diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-03-09 19:57:47 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-03-09 19:57:47 +0000 |
commit | f02a98c71bef717e40f58c6d5f18bd466140b9eb (patch) | |
tree | 623e59d62a688650b2baa39e8ecfbc3742645635 /phpBB | |
parent | b36c02f320e1d3250bbd5784d05d6044f70a19c8 (diff) | |
download | forums-f02a98c71bef717e40f58c6d5f18bd466140b9eb.tar forums-f02a98c71bef717e40f58c6d5f18bd466140b9eb.tar.gz forums-f02a98c71bef717e40f58c6d5f18bd466140b9eb.tar.bz2 forums-f02a98c71bef717e40f58c6d5f18bd466140b9eb.tar.xz forums-f02a98c71bef717e40f58c6d5f18bd466140b9eb.zip |
Efficiency change
git-svn-id: file:///svn/phpbb/trunk@5615 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/db/mssql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/mssql.php b/phpBB/includes/db/mssql.php index ab58b657ac..fee90af896 100644 --- a/phpBB/includes/db/mssql.php +++ b/phpBB/includes/db/mssql.php @@ -210,7 +210,7 @@ class dbal_mssql extends dbal { foreach ($row as $key => $value) { - $row[$key] = ($value === ' ') ? trim($value) : $value; + $row[$key] = ($value === ' ') ? '' : $value; } } |