Skip to content
Snippets Groups Projects
Commit 2855042c authored by comete-upn's avatar comete-upn
Browse files

Checking that some variables exist before using it.

parent 8962549c
Branches
Tags
Loading
......@@ -533,7 +533,7 @@ foreach ($htmlsection as $section) {
}
$titre = $nameSection[$i];
$sectionIntro = $introSection[$i];
$sectionIntro = isset($introSection[$i]) ? $introSection[$i] : '';
//If section is hidden continue
if ($titre == null && !(has_capability('moodle/course:update', $context = context_course::instance($COURSE->id), $USER->id))) {
$i++;
......@@ -777,7 +777,7 @@ public function print_iena_section_pages($course)
// }
/* if is not editing verify the rules to display the sections */
if (!$PAGE->user_is_editing() && (!has_capability('moodle/course:viewhiddensections', $context = context_course::instance($course->id), $USER->id))) {
if ($course->hiddensections && !(int)$thissection->visible) {
if (isset($course->hiddensections) && $course->hiddensections && !(int)$thissection->visible) {
continue;
}
if (!$thissection->available && !empty($thissection->availableinfo)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment