diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-03-03 19:05:48 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-03-03 19:05:48 +0100 |
commit | 3816dcbc4fc7d70493037bf3ee9468ca5a203db8 (patch) | |
tree | 361626f9cabce6f830d80881b4283f205fa7c829 /inc/auth.php | |
parent | 3bb35907e94c813b0bd286c6e3d1b12359c84618 (diff) | |
download | rpg-3816dcbc4fc7d70493037bf3ee9468ca5a203db8.tar.gz rpg-3816dcbc4fc7d70493037bf3ee9468ca5a203db8.tar.bz2 |
nicer error messages for fatal errors
darcs-hash:20060303180548-7ad00-db294c2c5c10c8df69ebae7596e64e1af4d9bc35.gz
Diffstat (limited to 'inc/auth.php')
-rw-r--r-- | inc/auth.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php index 79cae52e7..1efd42448 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -33,10 +33,10 @@ $conf['useacl'] = 0; } } else { - die($lang['authmodfailed']); + nice_die($lang['authmodfailed']); } } else { - die($lang['authmodfailed']); + nice_die($lang['authmodfailed']); } } |