1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 09:16:55 +02:00

- cleaned up firebirdsql

- cleaned up install


git-svn-id: file:///svn/phpbb/trunk@6563 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-11-10 14:56:18 +00:00
parent a5e32e5a94
commit a098417514
2 changed files with 6 additions and 5 deletions

View File

@@ -207,7 +207,7 @@ class dbal_firebird extends dbal
foreach (get_object_vars($cur_row) as $key => $value)
{
$row[strtolower($key)] = trim(str_replace("\\0", "\0", str_replace("\\n", "\n", $value)));
$row[strtolower($key)] = trim(str_replace(array("\\0", "\\n"), array("\0", "\n"), $value));
}
return (sizeof($row)) ? $row : false;