]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-11543 Replacing "Site" with "Top" in the list of available parent categories
authornicolasconnault <nicolasconnault>
Wed, 10 Oct 2007 04:53:32 +0000 (04:53 +0000)
committernicolasconnault <nicolasconnault>
Wed, 10 Oct 2007 04:53:32 +0000 (04:53 +0000)
course/editcategory_form.php

index 59bab64d26ba734c06d612555113048269297094..63dc83aeb7286109ca56c38126a7b0cc8703a3a3 100644 (file)
@@ -9,7 +9,7 @@ class editcategory_form extends moodleform {
         
         // get list of categories to use as parents, with site as the first one
         $categories = get_categories();
-        $options = array(get_string('site'));
+        $options = array(get_string('top'));
         foreach ($categories as $catid => $cat) {
             $options[$catid] = $cat->name;
         }