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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user