http://www.mediawiki.org/wiki/Special:Code/MediaWiki/84431

Revision: 84431
Author:   reedy
Date:     2011-03-20 22:46:09 +0000 (Sun, 20 Mar 2011)
Log Message:
-----------
As I've removed most of Roans reason to use php magic variables, completely 
remove them this time.

Followup r84430

Modified Paths:
--------------
    trunk/phase3/includes/api/ApiQueryBase.php

Modified: trunk/phase3/includes/api/ApiQueryBase.php
===================================================================
--- trunk/phase3/includes/api/ApiQueryBase.php  2011-03-20 22:35:41 UTC (rev 
84430)
+++ trunk/phase3/includes/api/ApiQueryBase.php  2011-03-20 22:46:09 UTC (rev 
84431)
@@ -251,18 +251,12 @@
         * @return ResultWrapper
         */
        protected function select( $method, $extraQuery = array() ) {
-               $tables = $this->tables;
-               $fields = $this->fields;
-               $where = $this->where;
-               $options = $this->options;
-               $join_conds = $this->join_conds;
 
-               // Merge $this->tables with $extraQuery['tables'], 
$this->fields with $extraQuery['fields'], etc.
-               foreach ( array( 'tables', 'fields', 'where', 'options', 
'join_conds' ) as $var ) {
-                       if ( isset( $extraQuery[$var] ) ) {
-                               $$var = array_merge( $$var, 
(array)$extraQuery[$var] );
-                       }
-               }
+               $tables = array_merge( $this->tables, isset( 
$extraQuery['tables'] ) ? (array)$extraQuery['tables'] : array() );
+               $fields = array_merge( $this->fields, isset( 
$extraQuery['fields'] ) ? (array)$extraQuery['fields'] : array() );
+               $where = array_merge( $this->where, isset( $extraQuery['where'] 
) ? (array)$extraQuery['where'] : array() );
+               $options = array_merge( $this->options, isset( 
$extraQuery['options'] ) ? (array)$extraQuery['options'] : array() );
+               $join_conds = array_merge( $this->join_conds, isset( 
$extraQuery['join_conds'] ) ? (array)$extraQuery['join_conds'] : array() );
 
                // getDB has its own profileDBIn/Out calls
                $db = $this->getDB();


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to