]> git.mjollnir.org Git - moodle.git/commitdiff
fixed bug #5298, missing string 'importfromothercourses'
authorskodak <skodak>
Thu, 27 Apr 2006 20:27:20 +0000 (20:27 +0000)
committerskodak <skodak>
Thu, 27 Apr 2006 20:27:20 +0000 (20:27 +0000)
course/import/activities/index.php

index 8ad423917487d8cc7aa841cbab6f0d040331caf3..d3bcb773cc8c7367708dcb0765abdda5aa4f1893 100644 (file)
@@ -10,7 +10,7 @@
     $page             = optional_param('page', 0, PARAM_INT);
     $filename         = optional_param('filename', 0, PARAM_PATH);
 
-    $strimportothercourses = get_string('importfromothercourses');
+    $strimportactivities = get_string('importactivities');
 
     if (! ($course = get_record("course", "id", $id)) ) {
         error("That's an invalid course id");
         }
     }
     
-    print_header("$course->shortname: $strimportothercourses", "$course->fullname", 
+    print_header("$course->shortname: $strimportactivities", "$course->fullname", 
                  "<a href=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</a> ".
                  "-> <a href=\"$CFG->wwwroot/course/import.php?id=$course->id\">".get_string('import')."</a> ".
-                 "-> $strimportothercourses");
+                 "-> $strimportactivities");
     require_once('mod.php');    
 
     print_footer();