mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
65dd61bda6
refactoring - reports now use real index.php
12 lines
168 B
PHP
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);
|
|
|
|
?>
|