From: patrickslee Date: Sun, 26 Mar 2006 20:58:54 +0000 (+0000) Subject: Fixed false course category move when searching courses in editing mode X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=40b4a063d45ed01565f6ae02b84f63b5c8ce5f8e;p=moodle.git Fixed false course category move when searching courses in editing mode --- diff --git a/course/search.php b/course/search.php index 6c18b0ada2..9a10f5d76f 100644 --- a/course/search.php +++ b/course/search.php @@ -8,6 +8,7 @@ $search = optional_param('search', '', PARAM_RAW); // search words $page = optional_param('page', 0, PARAM_INT); // which page to show $perpage = optional_param('perpage', 10, PARAM_INT); // how many per page + $moveto = optional_param('moveto', 0, PARAM_INT); // move to category $search = trim(strip_tags($search)); // trim & clean raw searched string @@ -103,7 +104,7 @@ exit; } - if (isset($moveto) and $data = data_submitted() and confirm_sesskey()) { // Some courses are being moved + if (!empty($moveto) and $data = data_submitted() and confirm_sesskey()) { // Some courses are being moved if (! $destcategory = get_record("course_categories", "id", $data->moveto)) { error("Error finding the category");