15 lines
293 B
PHP
15 lines
293 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();
|
|
?>
|