From dad4a8e5d74ec26e5e8c44e0dbb202415f841d06 Mon Sep 17 00:00:00 2001 From: cap2501 Date: Tue, 29 Aug 2006 02:02:45 +0000 Subject: [PATCH] Fixed errors in refactoring ( rev3, almost there) --- course/format/topics/commands.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/course/format/topics/commands.php b/course/format/topics/commands.php index 148a387eca..8eeda4d4b4 100644 --- a/course/format/topics/commands.php +++ b/course/format/topics/commands.php @@ -14,8 +14,8 @@ $instanceid = optional_param('instanceId', 0, PARAM_INT); $value = optional_param('value', 0, PARAM_INT); $column = optional_param('column', 0, PARAM_ALPHA); $id = optional_param('id', 0, PARAM_INT); -$summary = optional_param('summary', '', PARAM_INT); -$sequence = optional_param('sequence', '', PARAM_INT); +$summary = optional_param('summary', '', PARAM_ALPHA); +$sequence = optional_param('sequence', '', PARAM_ALPHANUM); $visible = optional_param('visible', 0, PARAM_INT); // Authorise the user and verify some incoming data @@ -75,7 +75,7 @@ switch ($class) { case 'sequence': - $dataobject->sequence = $value; + $dataobject->sequence = $sequence; if (!update_record('course_sections',$dataobject)) { error('Failed to update section'); } -- 2.39.5