From 5ec8bddd1015c32294c6dba3daea1734fb8a4542 Mon Sep 17 00:00:00 2001 From: Steve Sanbeg Date: Thu, 20 Nov 2008 23:55:38 +0000 Subject: [PATCH] undo 43772; there seems to be various special behavior hacked onto
, some of which may be intentional --- includes/parser/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 881d19ab4e..fe016a8412 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -2211,7 +2211,7 @@ class Parser $output .= $paragraphStack; $paragraphStack = false; $this->mLastSection = 'p'; - } else if ($this->mLastSection !== 'p' and $this->mLastSection !== '') { + } else if ($this->mLastSection !== 'p') { $output .= $this->closeParagraph().'

'; $this->mLastSection = 'p'; } -- 2.20.1