moodle/blocks/rss_client/block_rss_client_error.php
2005-08-11 12:45:38 +00:00

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();
?>