repo.or.cz
/
moodle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dan's fix from MDL-7263
[moodle.git]
/
mod
/
label
/
index.php
blob
52311c3ce8248a7465dd112dc0dd90bc419c1113
1
<
?php
// $Id$
2
3
require_once
(
"../../config.php"
);
4
require_once
(
"lib.php"
);
5
6
$id
=
required_param
(
'id'
,
PARAM_INT
);
// course
7
8
redirect
(
"
$CFG
->wwwroot/course/view.php?id=
$id
"
);
9
10
?
>