summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-25 20:40:11 +0000
committeruckelman <uckelman@nomic.net>2010-04-25 20:40:11 +0000
commit65bb6d26c320d85d9fb59b221bae8be41cc03d3a (patch)
tree5f042fae20c94c22753adbe79e0b264718bec9b7 /src
parent220fc30dcd11beee18fb23d60456c901ab6b392d (diff)
Added missing argument.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6751 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src')
-rw-r--r--src/BBCodeParser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/BBCodeParser.php b/src/BBCodeParser.php
index 1083f7e..9e3233a 100644
--- a/src/BBCodeParser.php
+++ b/src/BBCodeParser.php
@@ -9,7 +9,7 @@ class BBCodeParser {
function parse($in, $uid) {
# decode HTML entities before parsing
- $in = html_entity_decode($in, 'UTF-8');
+ $in = html_entity_decode($in, ENT_QUOTES, 'UTF-8');
$text_stack = array();
$arg_stack = array();