From: martinlanghoff Date: Wed, 19 Sep 2007 07:51:02 +0000 (+0000) Subject: index.php: drop unused $hidesitecourse parameter when calling print_courses() X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5f6b9c09b7057bb612ebcf74433f7ea10c641e47;p=moodle.git index.php: drop unused $hidesitecourse parameter when calling print_courses() And this is the only user of print_courses() that mentions it explicitly. Other callers have been checked and don't need or use the sitecourse. --- diff --git a/index.php b/index.php index 2b4f9bce95..a1d9a607ae 100644 --- a/index.php +++ b/index.php @@ -224,7 +224,7 @@ } else if ((!has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM)) and !isguest()) or (count_records('course') <= FRONTPAGECOURSELIMIT)) { // admin should not see list of courses when there are too many of them print_heading_block(get_string('availablecourses')); - print_courses(0, true); + print_courses(0); } break;