From 5f6b9c09b7057bb612ebcf74433f7ea10c641e47 Mon Sep 17 00:00:00 2001
From: martinlanghoff <martinlanghoff>
Date: Wed, 19 Sep 2007 07:51:02 +0000
Subject: [PATCH] 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.
---
 index.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 
-- 
2.39.5