dbnschools / moodle-theme_fordson

Theme for Moodle 3.3+
43 stars 40 forks source link

Display bug #4

Closed jrm-unamur closed 7 years ago

jrm-unamur commented 7 years ago

Hi there,

When config param courseoverviewfileslimit is 0 (adminsettings/appearance/course), "Array" is displayed before

Function "headerimage()" in forsdon's core_renderer should return empty string instead of array() at line 109; Regards

dbnschools commented 7 years ago

Fixed in next upcoming release 1.5.3 if (empty($CFG->courseoverviewfileslimit)) { if ($CFG->courseoverviewfileslimit == 0) { return ''; } return array(); }

dbnschools commented 7 years ago

if (empty($CFG->courseoverviewfileslimit)) { return ''; }