diff options
author | Nils Adermann <naderman@naderman.de> | 2005-12-17 22:09:33 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2005-12-17 22:09:33 +0000 |
commit | f80bf5bf1e29eb0f1db339c30b343c83e072bf56 (patch) | |
tree | b8af7d2a799f980aad000b7005aa71aef8b088d3 /phpBB/includes | |
parent | 1595f7a8d371fbed26553ad8081226162a63ec65 (diff) | |
download | forums-f80bf5bf1e29eb0f1db339c30b343c83e072bf56.tar forums-f80bf5bf1e29eb0f1db339c30b343c83e072bf56.tar.gz forums-f80bf5bf1e29eb0f1db339c30b343c83e072bf56.tar.bz2 forums-f80bf5bf1e29eb0f1db339c30b343c83e072bf56.tar.xz forums-f80bf5bf1e29eb0f1db339c30b343c83e072bf56.zip |
I was told I also had to commit something today ;-)
Hexadecimal should be in double quotes.
git-svn-id: file:///svn/phpbb/trunk@5348 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 541c8253ad..a453ad9edb 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -22,7 +22,7 @@ function set_var(&$result, $var, $type, $multibyte = false) if ($type == 'string') { - $result = trim(htmlspecialchars(str_replace(array("\r\n", "\r", '\xFF'), array("\n", "\n", ' '), $result))); + $result = trim(htmlspecialchars(str_replace(array("\r\n", "\r", "\xFF"), array("\n", "\n", ' '), $result))); $result = (STRIP) ? stripslashes($result) : $result; if ($multibyte) { |