aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-05-04 06:54:43 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-05-04 06:54:43 +0000
commit9a9a9ff6f3d4442ca7e3d1270bf137006c5bcdfc (patch)
tree174006c7645f2ef9da727d84da1541a620cd6923 /phpBB/includes/functions.php
parent9a0ad16272ccb461a5864b2a0cd8aa8f769ffdad (diff)
downloadforums-9a9a9ff6f3d4442ca7e3d1270bf137006c5bcdfc.tar
forums-9a9a9ff6f3d4442ca7e3d1270bf137006c5bcdfc.tar.gz
forums-9a9a9ff6f3d4442ca7e3d1270bf137006c5bcdfc.tar.bz2
forums-9a9a9ff6f3d4442ca7e3d1270bf137006c5bcdfc.tar.xz
forums-9a9a9ff6f3d4442ca7e3d1270bf137006c5bcdfc.zip
- fixed ul/li margin
- fixed [code=php] tag (tags got mangled on edit) - fixed a tiny issue within the ban function git-svn-id: file:///svn/phpbb/trunk@5875 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 4ccdc1b3ec..d4be3ec65e 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -1647,7 +1647,7 @@ function decode_message(&$message, $bbcode_uid = '')
'#<.*?>#s'
);
- $replace = array('\1', '\1', '\1', '\1', '\1', '', '&lt;\1&gt;');
+ $replace = array('\1', '\1', '\1', '\1', '\1', '', '');
$message = preg_replace($match, $replace, $message);