From: skodak Date: Mon, 31 Jul 2006 09:18:52 +0000 (+0000) Subject: Bug #6168 - missing link for course request - fixed; merged from MOODLE_16_STABLE X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d1a66080d541ae071e13059aff808049636c0e6b;p=moodle.git Bug #6168 - missing link for course request - fixed; merged from MOODLE_16_STABLE --- 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"); }