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:
parent
b36c02f320
commit
f02a98c71b
@ -210,7 +210,7 @@ class dbal_mssql extends dbal
|
||||
{
|
||||
foreach ($row as $key => $value)
|
||||
{
|
||||
$row[$key] = ($value === ' ') ? trim($value) : $value;
|
||||
$row[$key] = ($value === ' ') ? '' : $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user