Merge branch 'extended-cookie'
[scuttle] / templates / error.500.tpl.php
1 <?php
2 header('HTTP/1.x 500 Server error');
3 $this->includeTemplate($GLOBALS['top_include']);
4 if (!$error) {
5     echo '<h1>'. T_('General server error') .'</h1>';
6     echo '<p>'. T_('The requested URL could not be processed') .'</p>';
7 }
8 $this->includeTemplate($GLOBALS['bottom_include']);
9 ?>

Benjamin Mako Hill || Want to submit a patch?