mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
19 lines
435 B
PHP
19 lines
435 B
PHP
<?php
|
|
// version $Id$
|
|
// Page for forbidden access from CAS
|
|
require("../../config.php");
|
|
|
|
if (!$site = get_site()) {
|
|
print_error('nosite', '', '', NULL, true);
|
|
}
|
|
|
|
$loginsite = get_string("loginsite");
|
|
$errormsg = get_string("auth_cas_invalidcaslogin", "auth");
|
|
|
|
print_header("$site->fullname: $loginsite", "$site->fullname", $loginsite);
|
|
include("forbidden.html");
|
|
print_footer();
|
|
exit;
|
|
?>
|
|
|