diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-04-15 14:55:33 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-04-15 14:55:33 +0000 |
commit | 164b55b394852d6e74a4faa987e8891507f22b51 (patch) | |
tree | a34f0b42171d5e67ca7530d06922aef758cc0740 /phpBB/includes/functions.php | |
parent | 84738055a25081070f570b40a19e05db21908237 (diff) | |
download | forums-164b55b394852d6e74a4faa987e8891507f22b51.tar forums-164b55b394852d6e74a4faa987e8891507f22b51.tar.gz forums-164b55b394852d6e74a4faa987e8891507f22b51.tar.bz2 forums-164b55b394852d6e74a4faa987e8891507f22b51.tar.xz forums-164b55b394852d6e74a4faa987e8891507f22b51.zip |
i do not think i need this any longer. ;)
git-svn-id: file:///svn/phpbb/trunk@5785 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 52e0ab7cee..38e9448ecb 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -30,7 +30,6 @@ function set_var(&$result, $var, $type, $multibyte = false) // Check for possible multibyte characters to save a preg_replace call if nothing is in there... if ($multibyte && strpos($result, '&#') !== false) { - echo "HERE"; $result = preg_replace('#&(\#[0-9]+;)#', '&\1', $result); } } |