From 1621f00dcc3b485b916d7fb72da7c34b4423f388 Mon Sep 17 00:00:00 2001 From: Yoselyn Castillo Date: Tue, 8 Oct 2013 12:49:46 -0400 Subject: [PATCH] show add course link in admin when course_validation is active -refs #6741 --- main/admin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/admin/index.php b/main/admin/index.php index 1538ab7210..f2cc60f319 100644 --- a/main/admin/index.php +++ b/main/admin/index.php @@ -108,7 +108,7 @@ if (api_is_platform_admin()) { $items[] = array('url'=>'course_list.php', 'label' => get_lang('CourseList')); $items[] = array('url'=>'course_add.php', 'label' => get_lang('AddCourse')); - if (api_get_setting('course_validation') == 'true') { + if (api_get_setting('course_validation') == 'true') { $items[] = array('url'=>'course_request_review.php', 'label' => get_lang('ReviewCourseRequests')); $items[] = array('url'=>'course_request_accepted.php', 'label' => get_lang('AcceptedCourseRequests'));