SemanticScuttle/data/templates/minimal/error.500.tpl.php

10 lines
290 B
PHP
Raw Normal View History

2023-12-21 06:39:10 +01:00
<?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']);
?>