API: sinumberingroup now gives correct size of 'user' group, and omits size of implic...
[lhc/web/wiklou.git] / includes / api / ApiPurge.php
index 8cd8b60..8c287e3 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 
 /**
- * Created on Sep 2, 2008
- *
  * API for MediaWiki 1.14+
  *
+ * Created on Sep 2, 2008
+ *
  * Copyright © 2008 Chad Horohoe
  *
  * This program is free software; you can redistribute it and/or modify
  *
  * You should have received a copy of the GNU General Public License along
  * with this program; if not, write to the Free Software Foundation, Inc.,
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
  */
 
 if ( !defined( 'MEDIAWIKI' ) ) {
@@ -46,9 +48,6 @@ class ApiPurge extends ApiBase {
                if ( !$wgUser->isAllowed( 'purge' ) ) {
                        $this->dieUsageMsg( array( 'cantpurge' ) );
                }
-               if ( !isset( $params['titles'] ) ) {
-                       $this->dieUsageMsg( array( 'missingparam', 'titles' ) );
-               }
                $result = array();
                foreach ( $params['titles'] as $t ) {
                        $r = array();
@@ -65,7 +64,7 @@ class ApiPurge extends ApiBase {
                                $result[] = $r;
                                continue;
                        }
-                       $article = Mediawiki::articleFromTitle( $title );
+                       $article = MediaWiki::articleFromTitle( $title );
                        $article->doPurge(); // Directly purge and skip the UI part of purge().
                        $r['purged'] = '';
                        $result[] = $r;
@@ -86,7 +85,8 @@ class ApiPurge extends ApiBase {
        public function getAllowedParams() {
                return array(
                        'titles' => array(
-                               ApiBase::PARAM_ISMULTI => true
+                               ApiBase::PARAM_ISMULTI => true,
+                               ApiBase::PARAM_REQUIRED => true
                        )
                );
        }
@@ -104,7 +104,6 @@ class ApiPurge extends ApiBase {
        public function getPossibleErrors() {
                return array_merge( parent::getPossibleErrors(), array(
                        array( 'cantpurge' ),
-                       array( 'missingparam', 'titles' ),
                ) );
        }