From f6d65e533c62f6deb21342d4901ece24497b433e Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 4 Jun 2015 07:31:04 +0200 Subject: Update to MediaWiki 1.25.1 --- includes/api/ApiFileRevert.php | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) (limited to 'includes/api/ApiFileRevert.php') diff --git a/includes/api/ApiFileRevert.php b/includes/api/ApiFileRevert.php index f518e172..5517ee08 100644 --- a/includes/api/ApiFileRevert.php +++ b/includes/api/ApiFileRevert.php @@ -61,7 +61,7 @@ class ApiFileRevert extends ApiBase { } else { $result = array( 'result' => 'Failure', - 'errors' => $this->getResult()->convertStatusToArray( $status ), + 'errors' => $this->getErrorFormatter()->arrayFromStatus( $status ), ); } @@ -135,29 +135,15 @@ class ApiFileRevert extends ApiBase { ); } - public function getParamDescription() { - return array( - 'filename' => 'Target filename without the File: prefix', - 'comment' => 'Upload comment', - 'archivename' => 'Archive name of the revision to revert to', - ); - } - - public function getDescription() { - return array( - 'Revert a file to an old version.' - ); - } - public function needsToken() { return 'csrf'; } - public function getExamples() { + protected function getExamplesMessages() { return array( - 'api.php?action=filerevert&filename=Wiki.png&comment=Revert&' . + 'action=filerevert&filename=Wiki.png&comment=Revert&' . 'archivename=20110305152740!Wiki.png&token=123ABC' - => 'Revert Wiki.png to the version of 20110305152740', + => 'apihelp-filerevert-example-revert', ); } } -- cgit v1.2.2