From: skodak Date: Mon, 2 Apr 2007 13:46:01 +0000 (+0000) Subject: MDL-9172 "Turn editing off" button disappear from category page; merged from MOODLE_1... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=571880d2203407e32a5e48576129aad76b79eea0;p=moodle.git MDL-9172 "Turn editing off" button disappear from category page; merged from MOODLE_18_STABLE --- diff --git a/course/index.php b/course/index.php index 8c0d5f3a77..6454afe78b 100644 --- a/course/index.php +++ b/course/index.php @@ -60,7 +60,7 @@ } /// I am not sure this context in the next has_capability call is correct. - if (isloggedin() and !isguest() and !has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM, SITEID)) and $CFG->enablecourserequests) { // Print link to request a new course + if (isloggedin() and !isguest() and !has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM, SITEID)) and $CFG->enablecourserequests) { // Print link to request a new course print_single_button('request.php', NULL, get_string('courserequest'), 'get'); } if (has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM, SITEID))) { // Print link to create a new course @@ -315,6 +315,7 @@ echo ''; + echo '
'; /// Print link to create a new course if (has_capability('moodle/course:create', $context)) { unset($options); @@ -324,6 +325,11 @@ print_single_button('pending.php',NULL, get_string('coursespending'), 'get'); + // admin page does not allow custom buttons in the navigation bar + echo '
'; + echo update_categories_button(); + echo '
'; + admin_externalpage_print_footer($adminroot);