From 620aca0ac2390b27fb3919396408bd50cb3beb7c Mon Sep 17 00:00:00 2001 From: gbateson Date: Wed, 1 Aug 2007 05:33:49 +0000 Subject: [PATCH] set"reportusers" to PARAM_ALPHANUM, so that it can accept userids and group names --- mod/hotpot/report.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), -- 2.39.5