From a22b590463cf4a6666baa3e08ce55c51f50da95b Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Mon, 16 Dec 2013 12:12:31 -0500 Subject: [PATCH] Fix typo in new global report --- plugin/dashboard/block_global_info/block_global_info.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/dashboard/block_global_info/block_global_info.class.php b/plugin/dashboard/block_global_info/block_global_info.class.php index 27f78cb7aa..89f63e6fea 100644 --- a/plugin/dashboard/block_global_info/block_global_info.class.php +++ b/plugin/dashboard/block_global_info/block_global_info.class.php @@ -141,7 +141,7 @@ class BlockGlobalInfo extends Block array(get_lang('NumberOfCoursesPublic'), ''.Statistics::count_courses_by_visibility(COURSE_VISIBILITY_OPEN_WORLD).''), array(get_lang('NumberOfCoursesOpen'), ''.Statistics::count_courses_by_visibility(COURSE_VISIBILITY_OPEN_PLATFORM).''), array(get_lang('NumberOfCoursesPrivate'), ''.Statistics::count_courses_by_visibility(COURSE_VISIBILITY_REGISTERED).''), - array(get_lang('NumberOfCoursesClosed'), ''.Statistics::count_courses_by_visibility(COURSE_VISIBILITY_CLOSED).'') + array(get_lang('NumberOfCoursesClosed'), ''.Statistics::count_courses_by_visibility(COURSE_VISIBILITY_CLOSED).''), array(get_lang('NumberOfCoursesHidden'), ''.Statistics::count_courses_by_visibility(COURSE_VISIBILITY_HIDDEN).'') ); return $global_info;