Skip to content

Commit

Permalink
MDL-18729 param types ARE required
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Mar 28, 2009
1 parent 47d01e0 commit 08a09f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grade/report/stats/print.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
require_once $CFG->dirroot.'/grade/lib.php';
require_once $CFG->dirroot.'/grade/report/stats/lib.php';

$courseid = required_param('id');
$courseid = required_param('id', PARAM_INT);

$reportname = get_string('modulename', 'gradereport_stats');

Expand Down

0 comments on commit 08a09f5

Please sign in to comment.