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/ApiFormatDump.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'includes/api/ApiFormatDump.php') diff --git a/includes/api/ApiFormatDump.php b/includes/api/ApiFormatDump.php index d4c7cab4..f34e1ae4 100644 --- a/includes/api/ApiFormatDump.php +++ b/includes/api/ApiFormatDump.php @@ -40,14 +40,19 @@ class ApiFormatDump extends ApiFormatBase { public function execute() { $this->markDeprecated(); + $data = $this->getResult()->getResultData( null, array( + 'BC' => array(), + 'Types' => array(), + 'Strip' => 'all', + ) ); ob_start(); - var_dump( $this->getResultData() ); + var_dump( $data ); $result = ob_get_contents(); ob_end_clean(); $this->printText( $result ); } - public function getDescription() { - return 'DEPRECATED! Output data in PHP\'s var_dump() format' . parent::getDescription(); + public function isDeprecated() { + return true; } } -- cgit v1.2.3-54-g00ecf