Fix PHP warning

pull/2487/head
jmontoyaa 8 years ago
parent 1e3ab83738
commit 894aba25f1
  1. 6
      main/inc/lib/exercise.lib.php

@ -1924,7 +1924,6 @@ HOTSPOT;
} }
$listInfo = array(); $listInfo = array();
// Simple exercises // Simple exercises
if (empty($hotpotatoe_where)) { if (empty($hotpotatoe_where)) {
$column = !empty($column) ? Database::escape_string($column) : null; $column = !empty($column) ? Database::escape_string($column) : null;
@ -1944,7 +1943,6 @@ HOTSPOT;
$group_list = GroupManager::get_group_list(null, $courseInfo); $group_list = GroupManager::get_group_list(null, $courseInfo);
$clean_group_list = array(); $clean_group_list = array();
if (!empty($group_list)) { if (!empty($group_list)) {
foreach ($group_list as $group) { foreach ($group_list as $group) {
$clean_group_list[$group['id']] = $group['name']; $clean_group_list[$group['id']] = $group['name'];
@ -2025,7 +2023,7 @@ HOTSPOT;
} }
// Add all groups by user // Add all groups by user
$group_name_list = null; $group_name_list = '';
if ($is_empty_sql_inner_join_tbl_user) { if ($is_empty_sql_inner_join_tbl_user) {
$group_list = GroupManager::get_group_ids( $group_list = GroupManager::get_group_ids(
api_get_course_int_id(), api_get_course_int_id(),
@ -2033,8 +2031,10 @@ HOTSPOT;
); );
foreach ($group_list as $id) { foreach ($group_list as $id) {
if (isset($clean_group_list[$id])) {
$group_name_list .= $clean_group_list[$id].'<br/>'; $group_name_list .= $clean_group_list[$id].'<br/>';
} }
}
$results[$i]['group_name'] = $group_name_list; $results[$i]['group_name'] = $group_name_list;
} }

Loading…
Cancel
Save