From: Alexandre Emsenhuber Date: Wed, 5 Oct 2011 14:42:45 +0000 (+0000) Subject: Parse 'yourtext' message for the diff header to match the other usage in

just... X-Git-Tag: 1.31.0-rc.0~27258 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=3a6e95a1bed84abfcc869798f61ac3f9127e848e;p=lhc%2Fweb%2Fwiklou.git Parse 'yourtext' message for the diff header to match the other usage in

just below --- diff --git a/includes/EditPage.php b/includes/EditPage.php index d12eb59414..3bc0108d26 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -2001,7 +2001,7 @@ HTML $de = new DifferenceEngine( $this->mTitle ); $de->setText( $this->textbox2, $this->textbox1 ); - $de->showDiff( wfMsg( "yourtext" ), wfMsg( "storedversion" ) ); + $de->showDiff( wfMsgExt( 'yourtext', 'parseinline' ), wfMsg( 'storedversion' ) ); $wgOut->wrapWikiMsg( '

$1

', "yourtext" ); $this->showTextbox2(); @@ -2291,7 +2291,7 @@ HTML $wgOut->wrapWikiMsg( '

$1

', "yourdiff" ); $de = new DifferenceEngine( $this->mTitle ); $de->setText( $this->getContent(), $this->textbox2 ); - $de->showDiff( wfMsg( "storedversion" ), wfMsg( "yourtext" ) ); + $de->showDiff( wfMsg( "storedversion" ), wfMsgExt( 'yourtext', 'parseinline' ) ); $wgOut->wrapWikiMsg( '

$1

', "yourtext" ); $this->showTextbox2();