mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 01:48:45 +01:00
13 lines
365 B
PHP
13 lines
365 B
PHP
<?php
|
|
// version $Id$
|
|
// Page for forbidden access from CAS
|
|
require_once("../../config.php");
|
|
$errormsg = get_string("auth_cas_invalidcaslogin", "auth");
|
|
print_header("$site->fullname: $loginsite", "$site->fullname", $loginsite,
|
|
$focus, "", true, "<div align=right>$langmenu</div>");
|
|
include("forbidden.html");
|
|
print_footer();
|
|
exit;
|
|
?>
|
|
|