29422fa553
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@386 b3834d28-1941-0410-a4f8-b48e95affb8f
10 lines
290 B
PHP
10 lines
290 B
PHP
<?php
|
|
header('HTTP/1.x 500 Server error');
|
|
$this->includeTemplate($GLOBALS['top_include']);
|
|
if (!$error) {
|
|
echo '<h1>'. T_('General server error') .'</h1>';
|
|
echo '<p>'. T_('The requested URL could not be processed') .'</p>';
|
|
}
|
|
$this->includeTemplate($GLOBALS['bottom_include']);
|
|
?>
|