Skip to content

Commit

Permalink
Fixed issue #18286: Filter by group name in Group List, does not work (
Browse files Browse the repository at this point in the history
…#2576)

Co-authored-by: encuestabizdevgit <devgit@encuesta.biz>
  • Loading branch information
gabrieljenik and encuestabizdevgit committed Aug 26, 2022
1 parent 59242fb commit 57c24de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@ public function actionListquestiongroups($surveyid)
$baselang = $survey->language;
$model = new QuestionGroup('search');

if (isset($_GET['QuestionGroup'])) {
$model->attributes = $_GET['QuestionGroup'];
if (isset($_GET['QuestionGroup']['group_name'])) {
$model->group_name = $_GET['QuestionGroup']['group_name'];
}

if (isset($_GET['pageSize'])) {
Expand Down

0 comments on commit 57c24de

Please sign in to comment.