$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
case 'sequence':
- $dataobject->sequence = $value;
+ $dataobject->sequence = $sequence;
if (!update_record('course_sections',$dataobject)) {
error('Failed to update section');
}