mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
9 lines
186 B
PHP
9 lines
186 B
PHP
<?php
|
|
|
|
require_once("../../config.php");
|
|
|
|
$id = required_param('id', PARAM_INT);
|
|
|
|
// Rest in peace old assignment!
|
|
redirect(new moodle_url('/mod/assign/index.php', array('id' => $id)));
|