From cd405db239a943001c213b40698dbc09827c5da9 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Wed, 10 Oct 2007 04:53:32 +0000 Subject: [PATCH] MDL-11543 Replacing "Site" with "Top" in the list of available parent categories --- course/editcategory_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5