aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_bbcodes.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-10-03 03:59:16 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-10-03 03:59:16 +0000
commit71c30b8157a41d64f60754fcb11922b53ee82235 (patch)
tree79c46405971d0febe1894474d2dce859e78ba0e7 /phpBB/includes/acp/acp_bbcodes.php
parentc4d8c23357fd871daeac4056984bb46cc30781bc (diff)
downloadforums-71c30b8157a41d64f60754fcb11922b53ee82235.tar
forums-71c30b8157a41d64f60754fcb11922b53ee82235.tar.gz
forums-71c30b8157a41d64f60754fcb11922b53ee82235.tar.bz2
forums-71c30b8157a41d64f60754fcb11922b53ee82235.tar.xz
forums-71c30b8157a41d64f60754fcb11922b53ee82235.zip
#4226
git-svn-id: file:///svn/phpbb/trunk@6434 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_bbcodes.php')
-rw-r--r--phpBB/includes/acp/acp_bbcodes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_bbcodes.php b/phpBB/includes/acp/acp_bbcodes.php
index 519ffeee62..e22833c8bf 100644
--- a/phpBB/includes/acp/acp_bbcodes.php
+++ b/phpBB/includes/acp/acp_bbcodes.php
@@ -53,7 +53,7 @@ class acp_bbcodes
$bbcode_match = $row['bbcode_match'];
$bbcode_tpl = htmlspecialchars($row['bbcode_tpl']);
$display_on_posting = $row['display_on_posting'];
- $bbcode_helpline = html_entity_decode($row['bbcode_helpline']);
+ $bbcode_helpline = $row['bbcode_helpline'];
break;
case 'modify':
@@ -76,7 +76,7 @@ class acp_bbcodes
$bbcode_match = request_var('bbcode_match', '');
$bbcode_tpl = html_entity_decode(request_var('bbcode_tpl', ''));
- $bbcode_helpline = htmlspecialchars(request_var('bbcode_helpline', ''));
+ $bbcode_helpline = request_var('bbcode_helpline', '');
break;
}