mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
13 lines
261 B
PHP
13 lines
261 B
PHP
<?php
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
|
|
$id = required_param('id',PARAM_INT); // course
|
|
|
|
$PAGE->set_url(new moodle_url($CFG->wwwroot.'/mod/label/index.php', array('id'=>$id)));
|
|
|
|
redirect("$CFG->wwwroot/course/view.php?id=$id");
|
|
|
|
?>
|