Internal: Fix title/name query in get_usergroups_teacher AJAX call

pull/5202/head
Yannick Warnier 2 years ago
parent 35c963e44f
commit ecec889d22
  1. 2
      public/main/inc/ajax/model.ajax.php

@ -982,7 +982,7 @@ switch ($action) {
$options['where'] = [' (session_id IS NULL OR session_id != ?) ' => $sessionId];
}
if (!empty($keyword)) {
$options['where']['AND name like %?% '] = $keyword;
$options['where']['AND title like %?% '] = $keyword;
}
$count = $obj->getUserGroupNotInCourse(
$options,

Loading…
Cancel
Save