From 08aa4418c30cfc18ccc69a0f0f9cb9e17be6c196 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Mon, 12 Aug 2013 09:28:15 +0200 Subject: Update to MediaWiki 1.21.1 --- maintenance/edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'maintenance/edit.php') diff --git a/maintenance/edit.php b/maintenance/edit.php index 59df5e88..93fc3e79 100644 --- a/maintenance/edit.php +++ b/maintenance/edit.php @@ -68,10 +68,11 @@ class EditCLI extends Maintenance { # Read the text $text = $this->getStdin( Maintenance::STDIN_ALL ); + $content = ContentHandler::makeContent( $text, $wgTitle ); # Do the edit $this->output( "Saving... " ); - $status = $page->doEdit( $text, $summary, + $status = $page->doEditContent( $content, $summary, ( $minor ? EDIT_MINOR : 0 ) | ( $bot ? EDIT_FORCE_BOT : 0 ) | ( $autoSummary ? EDIT_AUTOSUMMARY : 0 ) | @@ -92,4 +93,3 @@ class EditCLI extends Maintenance { $maintClass = "EditCLI"; require_once( RUN_MAINTENANCE_IF_MAIN ); - -- cgit v1.2.2