Force changedfilter parameter to integer on Special:AbuseFilter.
authorAndrew Garrett <werdna@users.mediawiki.org>
Fri, 18 Sep 2009 14:30:05 +0000 (14:30 +0000)
committerAndrew Garrett <werdna@users.mediawiki.org>
Fri, 18 Sep 2009 14:30:05 +0000 (14:30 +0000)
Resolves bug 20496

includes/api/ApiFormatBase.php

index 0294fce..166c98f 100644 (file)
@@ -334,6 +334,8 @@ class ApiFormatFeedWrapper extends ApiFormatBase {
                        foreach ($items as & $item)
                                $feed->outItem($item);
                        $feed->outFooter();
+               } elseif ( isset($data['error']) ) {
+                       die( var_dump( $data['error'] ) );
                } else {
                        // Error has occured, print something useful
                        ApiBase::dieDebug( __METHOD__, 'Invalid feed class/item' );
@@ -343,4 +345,4 @@ class ApiFormatFeedWrapper extends ApiFormatBase {
        public function getVersion() {
                return __CLASS__ . ': $Id$';
        }
-}
\ No newline at end of file
+}