From: nicolasconnault Date: Wed, 10 Oct 2007 04:53:32 +0000 (+0000) Subject: MDL-11543 Replacing "Site" with "Top" in the list of available parent categories X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=cd405db239a943001c213b40698dbc09827c5da9;p=moodle.git MDL-11543 Replacing "Site" with "Top" in the list of available parent categories --- diff --git a/course/editcategory_form.php b/course/editcategory_form.php index 59bab64d26..63dc83aeb7 100644 --- a/course/editcategory_form.php +++ b/course/editcategory_form.php @@ -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; }