Add missing credits from r75975
authorSam Reed <reedy@users.mediawiki.org>
Sat, 6 Nov 2010 15:10:18 +0000 (15:10 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Sat, 6 Nov 2010 15:10:18 +0000 (15:10 +0000)
Remove a few unused array keys in API foreach loops

Remove part of Html::Hidden comment

CREDITS
includes/Html.php
includes/api/ApiMain.php
includes/api/ApiPageSet.php
includes/api/ApiParse.php

diff --git a/CREDITS b/CREDITS
index 03e9f82..935b656 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -91,6 +91,7 @@ following names for their contribution to the product.
 * Jidanni
 * Jimmy Xu
 * John Du Hart
+* Jonathan Wiltshire
 * Karun Dambietz
 * Kim Hyun-Joon
 * Lee Worden
index a1768df..6c802ca 100644 (file)
@@ -547,8 +547,7 @@ class Html {
        }
 
        /**
-        * Convenience function to produce an input element with type=hidden, like
-        * Xml::hidden.
+        * Convenience function to produce an input element with type=hidden
         *
         * @param $name    string name attribute
         * @param $value   string value attribute
index 2f21201..4fcb0b2 100644 (file)
@@ -833,7 +833,7 @@ class ApiMain extends ApiBase {
 
                $astriks = str_repeat( '*** ', 10 );
                $msg .= "\n\n$astriks Modules  $astriks\n\n";
-               foreach ( $this->mModules as $moduleName => $unused ) {
+               foreach ( $this->mModules as $moduleName ) {
                        $module = new $this->mModules[$moduleName] ( $this, $moduleName );
                        $msg .= self::makeHelpMsgHeader( $module, 'action' );
                        $msg2 = $module->makeHelpMsg();
@@ -852,7 +852,7 @@ class ApiMain extends ApiBase {
                }
 
                $msg .= "\n$astriks Formats  $astriks\n\n";
-               foreach ( $this->mFormats as $formatName => $unused ) {
+               foreach ( $this->mFormats as $formatName ) {
                        $module = $this->createPrinterByName( $formatName );
                        $msg .= self::makeHelpMsgHeader( $module, 'format' );
                        $msg2 = $module->makeHelpMsg();
index f54f1f8..3b1fd59 100644 (file)
@@ -501,7 +501,7 @@ class ApiPageSet extends ApiQueryBase {
                        if ( $processTitles ) {
                                // The remaining titles in $remaining are non-existent pages
                                foreach ( $remaining as $ns => $dbkeys ) {
-                                       foreach ( $dbkeys as $dbkey => $unused ) {
+                                       foreach ( $dbkeys as $dbkey ) {
                                                $title = Title::makeTitle( $ns, $dbkey );
                                                $this->mAllPages[$ns][$dbkey] = $this->mFakePageId;
                                                $this->mMissingTitles[$this->mFakePageId] = $title;
index de3b371..f6edbb0 100644 (file)
@@ -345,7 +345,7 @@ class ApiParse extends ApiBase {
        private function formatIWLinks( $iw ) {
                $result = array();
                foreach ( $iw as $prefix => $titles ) {
-                       foreach ( $titles as $title => $id ) {
+                       foreach ( $titles as $title ) {
                                $entry = array();
                                $entry['prefix'] = $prefix;