1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-04 13:35:13 +02:00

- firebird returns an error code (if you are on php 5)

git-svn-id: file:///svn/phpbb/trunk@5795 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2006-04-18 04:17:53 +00:00
parent 1149fd2ca8
commit 8e18b11e34

View File

@ -330,7 +330,7 @@ class dbal_firebird extends dbal
{
return array(
'message' => @ibase_errmsg(),
'code' => ''
'code' => (@function_exists('ibase_errcode') ? @ibase_errcode() : '')
);
}