aboutsummaryrefslogtreecommitdiff
path: root/data/templates/default/error.500.tpl.php
blob: 1d7f7ae40222513c53d7cae5124ef29a0106c45b (plain)
1
2
3
4
5
6
7
8
9
<?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']);
?>