mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
14 lines
No EOL
294 B
PHP
14 lines
No EOL
294 B
PHP
<?php //$Id$
|
|
// Print an error page condition
|
|
require_once('../../config.php');
|
|
|
|
$error = required_param('error', PARAM_CLEAN);
|
|
|
|
print_header(get_string('error'),
|
|
get_string('error'),
|
|
get_string('error') );
|
|
|
|
print clean_text(urldecode($error));
|
|
|
|
print_footer();
|
|
?>
|