Get course before require_login();

This commit is contained in:
ethem
2006-11-12 13:17:46 +00:00
parent 362c2fd638
commit 84f7bcc8ee
+6 -5
View File
@@ -9,6 +9,11 @@
$courseid = optional_param('course', SITEID, PARAM_INT);
$userid = optional_param('user', 0, PARAM_INT);
/// Get course
if (!$course = get_record('course', 'id', $courseid)) {
error('Could not find that course');
}
/// Only site users can access to this page
require_login(); // Don't use $courseid! User may want to see old orders.
@@ -25,11 +30,7 @@
/// Print header
$strpaymentmanagement = get_string('paymentmanagement', 'enrol_authorize');
if (!$course = get_record('course', 'id', $courseid)) {
error('Could not find that course');
}
print_header_simple("$strpaymentmanagement", "", "<a href=\"index.php\">$strpaymentmanagement</a>");
print_header_simple($strpaymentmanagement, "", "<a href=\"index.php\">$strpaymentmanagement</a>");
/// If orderid is empty, user wants to see all orders
if (empty($orderid)) {