Fixed small error in emphasis parser.

This commit is contained in:
Michel Fortin 2008-06-07 10:11:16 -04:00
parent f6a8c76f17
commit 1cd4dccefd

View file

@ -1231,7 +1231,7 @@ class Markdown_Parser {
$span = $this->runSpanGamut($span);
$span = "<em>$span</em>";
$text_stack[0] .= $this->hashPart($span);
$strong = '';
$em = '';
} else {
$text_stack[0] .= $token;
}