1
0
mirror of https://github.com/moodle/moodle.git synced 2025-03-03 23:46:09 +01:00
2007-07-23 22:20:07 +00:00

12 lines
168 B
PHP

<?php //$Id$
/*
* Compatibility redirection to reports
*/
require '../config.php';
$id = required_param('id', PARAM_INT);
redirect('report/index.php?id='.$id);
?>