summaryrefslogtreecommitdiff
path: root/dash/dash_functions.php
blob: 49664a3dbb31f6b01be8bbc6ad67ec8594fe12f7 (plain)
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 = '&larr; Got It';
  echo tpl(array('message' => $msg, 'link' => $link, 'label' => $label), 'dash_fatal.tpl').PHP_EOL;
  require('footer.php');
  die;
}
?>