From: nicolasconnault Date: Wed, 10 Oct 2007 04:59:35 +0000 (+0000) Subject: MDL-11608 Removed stripslashes_safe($rename) and changed PARAM_RAW to PARAM_TEXT... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=150f64e6618bab0a4b47f5ef88f2b675d2ce3880;p=moodle.git MDL-11608 Removed stripslashes_safe($rename) and changed PARAM_RAW to PARAM_TEXT for rename param --- diff --git a/course/category.php b/course/category.php index 7b9e212252..2a1dadd8d9 100644 --- a/course/category.php +++ b/course/category.php @@ -16,7 +16,7 @@ $moveup = optional_param('moveup', 0, PARAM_INT); $movedown = optional_param('movedown', 0, PARAM_INT); $moveto = optional_param('moveto', 0, PARAM_INT); - $rename = optional_param('rename', '', PARAM_RAW); + $rename = optional_param('rename', '', PARAM_TEXT); $resort = optional_param('resort', 0, PARAM_BOOL); $categorytheme= optional_param('categorytheme', false, PARAM_CLEAN); @@ -54,7 +54,7 @@ if (has_capability('moodle/category:update', $context)) { /// Rename the category if requested if (!empty($rename) and confirm_sesskey()) { - $category->name = stripslashes_safe($rename); + $category->name = $rename; if (! set_field("course_categories", "name", $category->name, "id", $category->id)) { notify("An error occurred while renaming the category"); }