Skip to content
Snippets Groups Projects
Commit 7e58cec3 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Fixes #14660

parent 17412b41
No related branches found
No related tags found
2 merge requests!446Develop,!445Fixes #14660
Pipeline #7427 passed
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment