From c1f9b1f7b1b77776192048005dcc66dcf3df2bfb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 27 Dec 2014 15:41:37 +0100 Subject: Update to MediaWiki 1.24.1 --- includes/api/ApiFormatPhp.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'includes/api/ApiFormatPhp.php') diff --git a/includes/api/ApiFormatPhp.php b/includes/api/ApiFormatPhp.php index bda1c180..73ce80ef 100644 --- a/includes/api/ApiFormatPhp.php +++ b/includes/api/ApiFormatPhp.php @@ -35,14 +35,13 @@ class ApiFormatPhp extends ApiFormatBase { } public function execute() { - global $wgMangleFlashPolicy; $text = serialize( $this->getResultData() ); // Bug 66776: wfMangleFlashPolicy() is needed to avoid a nasty bug in // Flash, but what it does isn't friendly for the API. There's nothing // we can do here that isn't actively broken in some manner, so let's // just be broken in a useful manner. - if ( $wgMangleFlashPolicy && + if ( $this->getConfig()->get( 'MangleFlashPolicy' ) && in_array( 'wfOutputHandler', ob_list_handlers(), true ) && preg_match( '/\<\s*cross-domain-policy\s*\>/i', $text ) ) { -- cgit v1.2.3-54-g00ecf