From b2c60e87f7de38bf35ca9634dbe5807f92ba34e4 Mon Sep 17 00:00:00 2001 From: uckelman Date: Sun, 25 Jul 2010 11:35:22 +0000 Subject: * Correctly handle open tags with arguments. * Convert non-BBCode style links. git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@7026 67b53d14-2c14-4ace-a08f-0dab2b34000c --- src/BBCodeParser.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'src/BBCodeParser.php') diff --git a/src/BBCodeParser.php b/src/BBCodeParser.php index af2d129..1a19d1f 100644 --- a/src/BBCodeParser.php +++ b/src/BBCodeParser.php @@ -15,6 +15,9 @@ class BBCodeParser { # convert smilies, which aren't in BBCode (ack!) $in = preg_replace('/(.*?)<\/a>/', "[url:$uid=\\2]\\3[/url:$uid]", $in); + $text_stack = array(); $arg_stack = array(); @@ -41,9 +44,15 @@ class BBCodeParser { $state = self::DONE; } else { - # locate next tag + $ulen = strlen($uid) + 1; + + # locate the start and end of next tag $tstart = strrpos($in, '[', $ustart-$len); - $tag = substr($in, $tstart+1, $ustart-$tstart-1); + $tend = strpos($in, ']', $ustart+$ulen); + + # slice out the uid + $tag = substr($in, $tstart+1, $ustart-$tstart-1) . + substr($in, $ustart+$ulen, $tend-$ustart-$ulen); # determine whether it's an open or close tag if ($tag[0] == '/') { @@ -57,8 +66,8 @@ class BBCodeParser { # copy leading text to output $out .= substr($in, $i, $tstart-$i); - # advance past ":$uid]" to next unparsed character - $i = $ustart + strlen($uid) + 2; + # advance past the closing ']' to next unparsed character + $i = $tend + 1; } break; -- cgit v1.2.3