1 2 3 4 5 6 7 8 9
<?php function dash_fatal ($msg = null, $link = null, $label = null) { if ($link === null) $link = 'javascript:history.go(-1);'; if ($label == null) $label = '← Got It'; echo tpl(array('message' => $msg, 'link' => $link, 'label' => $label), 'dash_fatal.tpl').PHP_EOL; require('footer.php'); die; } ?>