From 038184e26429902b77299dec143fe8db73bda00c Mon Sep 17 00:00:00 2001 From: danmarsden Date: Thu, 24 Aug 2006 02:08:59 +0000 Subject: [PATCH] MDL-4493 issue with 405 pages for IIS users - must specify actual page, as the notice function does a post - you cannot use the POST Verb on a directory in IIS. --- course/enrol.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/course/enrol.php b/course/enrol.php index fae35e88d9..9cfade9817 100644 --- a/course/enrol.php +++ b/course/enrol.php @@ -59,13 +59,13 @@ /// moved here to fix bug 5734 if ($course->metacourse) { print_header_simple(); - notice(get_string('coursenotaccessible'), $CFG->wwwroot); + notice(get_string('coursenotaccessible'), "$CFG->wwwroot/index.php"); } /// Users can't enroll to site course if (!$course->category) { print_header_simple(); - notice(get_string('enrollfirst'), $CFG->wwwroot); + notice(get_string('enrollfirst'), "$CFG->wwwroot/index.php"); } /// Double check just in case they are enrolled to start in the future @@ -74,14 +74,14 @@ if ($course->enrolperiod and $student->timestart and ($student->timestart >= time())) { $message = get_string('enrolmentnotyet', '', userdate($student->timestart)); print_header(); - notice($message, $CFG->wwwroot); + notice($message, "$CFG->wwwroot/index.php"); } } /// Check if the course is enrollable if (!method_exists($enrol, 'print_entry')) { print_header_simple(); - notice(get_string('enrolmentnointernal'), $CFG->wwwroot); + notice(get_string('enrolmentnointernal'), "$CFG->wwwroot/index.php"); } if (!$course->enrollable || @@ -89,7 +89,7 @@ ($course->enrollable == 2 && $course->enrolenddate > 0 && $course->enrolenddate <= time()) ) { print_header_simple(); - notice(get_string('notenrollable'), $CFG->wwwroot); + notice(get_string('notenrollable'), "$CFG->wwwroot/index.php"); } /// Check the submitted enrollment key if there is one -- 2.39.5