From 158510d9262a54ff617fc8b78d52d5b1575bb501 Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Sat, 10 Apr 2004 02:38:05 +0000 Subject: [PATCH] five quite fix --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index b602186433..f120ef6556 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -647,7 +647,7 @@ class Parser /* private */ function handle5Quotes( &$state, $token ) { $s = ""; - if ( $state["em"] !== false && $state["strong"] ) { + if ( $state["em"] !== false && $state["strong"] !== false ) { if ( $state["em"] < $state["strong"] ) { $s .= ""; } else { -- 2.20.1