$catlinkcss = $category->visible ? '' : ' class="dimmed" ';
- $coursecount = $DB->count_records('course') <= FRONTPAGECOURSELIMIT;
+ static $coursecount = null;
+ if (null === $coursecount) {
+ // only need to check this once
+ $coursecount = $DB->count_records('course') <= FRONTPAGECOURSELIMIT;
+ }
+
if ($showcourses and $coursecount) {
$catimage = '<img src="'.$CFG->pixpath.'/i/course.gif" alt="" />';
} else {