From d1a66080d541ae071e13059aff808049636c0e6b Mon Sep 17 00:00:00 2001 From: skodak Date: Mon, 31 Jul 2006 09:18:52 +0000 Subject: [PATCH] Bug #6168 - missing link for course request - fixed; merged from MOODLE_16_STABLE --- course/index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/course/index.php b/course/index.php index 74a7ec9c75..a5debf2b6c 100644 --- a/course/index.php +++ b/course/index.php @@ -56,6 +56,9 @@ } echo "
"; + if (isloggedin() and !isguest() and !isadmin() and !iscreator()) { // Print link to request a new course + print_single_button("request.php", NULL, get_string("courserequest"), "get"); + } if (iscreator()) { // Print link to create a new course print_single_button("edit.php", NULL, get_string("addnewcourse"), "get"); } -- 2.39.5