1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-18 23:14:41 +01:00

Efficiency change

git-svn-id: file:///svn/phpbb/trunk@5615 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames 2006-03-09 19:57:47 +00:00
parent b36c02f320
commit f02a98c71b

View File

@ -210,7 +210,7 @@ class dbal_mssql extends dbal
{
foreach ($row as $key => $value)
{
$row[$key] = ($value === ' ') ? trim($value) : $value;
$row[$key] = ($value === ' ') ? '' : $value;
}
}