moodle/mod/label/view.php
iarenaza 0baafc173a Fix MDL-11632: Multiple files with emtpy lines outside PHP open/close tags
There are multiple issues with Moodle files containing empty or blank lines
(lines consisting of white spaces or tabs only) and/or white space before or
after the PHP open and close tags, notably with config.php and theme files.
2007-10-09 21:43:28 +00:00

38 lines
1.1 KiB
PHP

<?php // $Id$
require_once("../../config.php");
$id = optional_param('id',0,PARAM_INT); // Course Module ID, or
$l = optional_param('l',0,PARAM_INT); // Label ID
if ($id) {
if (! $cm = get_coursemodule_from_id('label', $id)) {
error("Course Module ID was incorrect");
}
if (! $course = get_record("course", "id", $cm->course)) {
error("Course is misconfigured");
}
if (! $label = get_record("label", "id", $cm->instance)) {
error("Course module is incorrect");
}
} else {
if (! $label = get_record("label", "id", $l)) {
error("Course module is incorrect");
}
if (! $course = get_record("course", "id", $label->course)) {
error("Course is misconfigured");
}
if (! $cm = get_coursemodule_from_instance("label", $label->id, $course->id)) {
error("Course Module ID was incorrect");
}
}
require_login($course->id);
redirect("$CFG->wwwroot/course/view.php?id=$course->id");
?>