From 36554284ad394507abbabce63d0af4b1318af48e Mon Sep 17 00:00:00 2001 From: Rowan Lewis Date: Sat, 5 Mar 2011 15:34:40 +1000 Subject: [PATCH] Fixed issue where closing spans where inserted after their parent elements closing tag. --- lib/bitter/formats/symphony.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bitter/formats/symphony.php b/lib/bitter/formats/symphony.php index ff79cd3..48b3924 100755 --- a/lib/bitter/formats/symphony.php +++ b/lib/bitter/formats/symphony.php @@ -56,9 +56,9 @@ protected function processLines() { foreach ($characters as $character) { if ($character == "\n") { - $this->endLine(); - foreach ($stack as $alt_token) $this->output .= ''; + + $this->endLine(); } $this->output .= $character;