Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Commits
7e58cec3
Commit
7e58cec3
authored
2 years ago
by
Carsten Rose
Browse files
Options
Downloads
Patches
Plain Diff
Fixes #14660
parent
17412b41
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!446
Develop
,
!445
Fixes #14660
Pipeline
#7427
passed
2 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extension/Classes/Core/Evaluate.php
+8
-1
8 additions, 1 deletion
extension/Classes/Core/Evaluate.php
with
8 additions
and
1 deletion
extension/Classes/Core/Evaluate.php
+
8
−
1
View file @
7e58cec3
...
...
@@ -381,7 +381,14 @@ class Evaluate {
case
TABLESORTER_VIEW_SAVER
:
if
(
$this
->
tablesorter
===
null
)
{
$this
->
tablesorter
=
new
Tablesorter
(
$dbIndex
);
// Read settings always from dbIndexQfq
$dbIndexQfq
=
$this
->
store
::
getVar
(
SYSTEM_DB_INDEX_QFQ
,
STORE_SYSTEM
);
if
(
empty
(
$this
->
dbArray
[
$dbIndexQfq
]))
{
$this
->
dbArray
[
$dbIndexQfq
]
=
new
Database
(
$dbIndexQfq
);
}
$this
->
tablesorter
=
new
Tablesorter
(
$dbIndexQfq
);
}
return
(
$this
->
tablesorter
->
inlineTablesorterView
(
$arrToken
[
VAR_INDEX_VALUE
],
$foundInStore
));
break
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment