From 15656c813e072ca9bd6f780566bcc1008ca39944 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 28 May 2003 08:30:36 +0000 Subject: [PATCH] fixed edit conflict bug --- includes/Article.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Article.php b/includes/Article.php index 282e55d841..996ef23ea5 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -433,7 +433,7 @@ class Article { if ( "initial" == $formtype ) { $wpEdittime = $this->getTimestamp(); - $wpTextbox1 = $this->getContent(); + $wpTextbox1 = $this->getContent(true); $wpSummary = ""; } $wgOut->setRobotpolicy( "noindex,nofollow" ); @@ -446,7 +446,7 @@ class Article { $wgOut->addHTML( wfMsg( "explainconflict" ) ); $wpTextbox2 = $wpTextbox1; - $wpTextbox1 = $this->getContent(); + $wpTextbox1 = $this->getContent(true); $wpEdittime = $this->getTimestamp(); } else { $s = str_replace( "$1", $wgTitle->getPrefixedText(), -- 2.20.1