Skip to content

Commit

Permalink
Fixed issue #15875: Broken template editor
Browse files Browse the repository at this point in the history
  • Loading branch information
kclingerman committed Feb 18, 2020
1 parent ae4638e commit f65418b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/admin/limereplacementfields.php
Expand Up @@ -446,7 +446,7 @@ private function collectQuestionReplacements($surveyid, $gid = null, $qid = null
if ($gid != null && $qid == null) {
$oGroup = QuestionGroup::model()->findByPk($gid);
$oCriteria->with = ['group'];
$oCriteria->compare('group_order', '<='.$oGroup->group_order,);
$oCriteria->compare('group_order', '<='.$oGroup->group_order);
}

if ($qid != null) {
Expand Down

0 comments on commit f65418b

Please sign in to comment.