diff options
Diffstat (limited to 'inc')
| -rw-r--r-- | inc/dash_fatal.tpl | 9 | ||||
| -rw-r--r-- | inc/functions.php | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/inc/dash_fatal.tpl b/inc/dash_fatal.tpl new file mode 100644 index 0000000..31106a2 --- /dev/null +++ b/inc/dash_fatal.tpl @@ -0,0 +1,9 @@ + <div class="errbox"> + <p>[tpl:message]</p> + <div class="hr"></div> + <p class="back"> + <a href="[tpl:link]"> + [tpl:label] + </a> + </p> + </div> diff --git a/inc/functions.php b/inc/functions.php index 4e98342..4793d3d 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -36,7 +36,7 @@ function tpl ($options, $file) { return $tpl_htm; } -function fatal ($msg, $link, $label) { +function fatal ($msg = null, $link = null, $label = null) { if ($link === null) $link = 'javascript:history.go(-1);'; if ($label === null) $label = '← Got It'; die(tpl(array('message' => $msg, 'link' => $link, 'label' => $label), 'fatal.tpl')); |
