diff options
author | svncommit <devs@roundcube.net> | 2009-01-05 10:13:08 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2009-01-05 10:13:08 +0000 |
commit | 6710a636170c73162560c94629656ddde85c7fa8 (patch) | |
tree | 62dbe6c601ce1edc7367e54186e839a38f44d1b1 /program/lib | |
parent | fa2bfdc0d5b3c2a4bb2e131616b420c3e155bd76 (diff) |
Add required parameters to raise_error() calls.
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/utf8.class.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/lib/utf8.class.php b/program/lib/utf8.class.php index e2d10599d..2bbe63663 100644 --- a/program/lib/utf8.class.php +++ b/program/lib/utf8.class.php @@ -108,6 +108,7 @@ Class utf8{ function onError($err_code,$err_text){ //print($err_code . " : " . $err_text . "<hr>\n"); raise_error(array('code' => 500, + 'type' => 'php', 'file' => __FILE__, 'message' => $err_text), TRUE, FALSE); } @@ -173,4 +174,4 @@ Class utf8{ } -?>
\ No newline at end of file +?> |