From: gbateson Date: Wed, 1 Aug 2007 05:33:49 +0000 (+0000) Subject: set"reportusers" to PARAM_ALPHANUM, so that it can accept userids and group names X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=620aca0ac2390b27fb3919396408bd50cb3beb7c;p=moodle.git set"reportusers" to PARAM_ALPHANUM, so that it can accept userids and group names --- diff --git a/mod/hotpot/report.php b/mod/hotpot/report.php index aa602b0ecc..7c54e3467c 100644 --- a/mod/hotpot/report.php +++ b/mod/hotpot/report.php @@ -51,7 +51,7 @@ // assemble array of form data $formdata = array( 'mode' => $mode, - 'reportusers' => has_capability('mod/hotpot:viewreport',$modulecontext) ? optional_param('reportusers', get_user_preferences('hotpot_reportusers', 'allusers'), PARAM_ALPHA) : 'this', + 'reportusers' => has_capability('mod/hotpot:viewreport',$modulecontext) ? optional_param('reportusers', get_user_preferences('hotpot_reportusers', 'allusers'), PARAM_ALPHANUM) : 'this', 'reportattempts' => optional_param('reportattempts', get_user_preferences('hotpot_reportattempts', 'all'), PARAM_ALPHA), 'reportformat' => optional_param('reportformat', 'htm', PARAM_ALPHA), 'reportshowlegend' => optional_param('reportshowlegend', get_user_preferences('hotpot_reportshowlegend', '0'), PARAM_INT),