Skip to content

Commit

Permalink
Fixed issue #17777: PGSQL CDbCommand issue ins statistics
Browse files Browse the repository at this point in the history
Dev: remove uneeded table name
  • Loading branch information
Shnoulle committed Dec 5, 2021
1 parent fbfebff commit 32b66a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion application/models/Question.php
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,8 @@ public function getQuestionList($surveyid)
->findAll(
array(
'condition' => 't.sid=:sid',
'order' => 'group.group_order,question_order',
/* table name not needed , see #17777 */
'order' => 'group_order,question_order',
'params' => array(':sid' => $surveyid)
)
);
Expand Down

0 comments on commit 32b66a1

Please sign in to comment.