From 2595b8fd25bc4ccaf40c93f418969d2ce58931b3 Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sun, 12 Oct 2008 02:20:08 +0000 Subject: [PATCH] --- includes/parser/Parser.php | 19 ++++++++----------- maintenance/parserTests.txt | 8 ++------ 2 files changed, 10 insertions(+), 17 deletions(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index d951a02466..c1c18a89dc 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -4190,23 +4190,20 @@ class Parser */ $nl = array_key_exists( 'compact', $param ) ? '' : "\n"; - $tag = $this->insertStripItem( "
", $this->mStripState ); + $replacer = new DoubleReplacer( ' ', ' ' ); + $text = $this->recursiveTagParse( $in ); + $text = $this->mStripState->unstripNoWiki( $text ); // Only strip the very first and very last \n (which trim cannot do) - $text = $in; - if( substr( $in, 0, 1 ) == "\n" ) - $text = substr( $in, 1 ); + if( substr( $text, 0, 1 ) == "\n" ) + $text = substr( $text, 1 ); if( substr( $text, -1 ) == "\n" ) $text = substr( $text, 0, -1 ); - $text = str_replace( "\n", "$tag\n", $text ); + $text = str_replace( "\n", "
\n", $text ); $text = preg_replace_callback( "/^( +)/m", - create_function( - '$matches', - 'return str_replace(" ", " ", "$matches[0]");' - ), + $replacer->cb(), $text ); - $text = $this->recursiveTagParse( $text ); // Pass HTML attributes through to the output. $attribs = Sanitizer::validateTagAttributes( $param, 'div' ); @@ -4218,7 +4215,7 @@ class Parser $attribs['class'] = 'poem'; } - return XML::openElement( 'div', $attribs ) . $nl . trim( $text ) . $nl . XML::closeElement( 'div' ); + return Xml::openElement( 'div', $attribs ) . $nl . trim( $text ) . $nl . Xml::closeElement( 'div' ); } function getImageParams( $handler ) { diff --git a/maintenance/parserTests.txt b/maintenance/parserTests.txt index 20876f2e8f..5f5f54fc85 100644 --- a/maintenance/parserTests.txt +++ b/maintenance/parserTests.txt @@ -7234,9 +7234,7 @@ test this
is
a
-test
- -

+test

!!end @@ -7256,9 +7254,7 @@ test this
'''is'''
a
-test
- -

+test

!! end -- 2.20.1