* [bug#52458,0.5h] fix query filter value in step 1.

This commit is contained in:
qixinzhi
2024-07-10 13:21:18 +08:00
committed by 周鑫
parent 0c42252090
commit b4d9a9bb23
+2 -1
View File
@@ -1143,7 +1143,8 @@ class biModel extends model
$checked = $this->validateSql($sql, $driver);
if($checked !== true) return $stateObj->setError($checked);
$sql = $this->processVars($stateObj->sql, $stateObj->getFilters());
$sql = $this->processVars($stateObj->sql, $stateObj->getFilters());
$statement = $this->sql2Statement($sql);
$recPerPage = $stateObj->pager->recPerPage;
$pageID = $stateObj->pager->pageID;