mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue