Browse Source

Minor - Remove punctuation - refs BT#9068

Yannick Warnier 10 years ago
parent
commit
35e1ccd110
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/admin/course_edit.php

+ 1 - 1
main/admin/course_edit.php

@@ -306,7 +306,7 @@ if ($form->validate()) {
     // Check if the visual code is already used by *another* course
     $visual_code_is_used = false;
 
-    $warn = get_lang('TheFollowingCoursesAlreadyUseThisVisualCode') . ':';
+    $warn = get_lang('TheFollowingCoursesAlreadyUseThisVisualCode');
     if (!empty($visual_code)) {
         $list = CourseManager::get_courses_info_from_visual_code($visual_code);
         foreach ($list as $course_temp) {