
aaron at svn
May 26, 2008, 9:47 PM
Views: 52
Permalink
|
|
SVN: [35381] trunk/phase3/includes/SpecialWhatlinkshere.php
|
|
Revision: 35381 Author: aaron Date: 2008-05-27 04:47:29 +0000 (Tue, 27 May 2008) Log Message: ----------- Doc typo Modified Paths: -------------- trunk/phase3/includes/SpecialWhatlinkshere.php Modified: trunk/phase3/includes/SpecialWhatlinkshere.php =================================================================== --- trunk/phase3/includes/SpecialWhatlinkshere.php 2008-05-27 02:45:40 UTC (rev 35380) +++ trunk/phase3/includes/SpecialWhatlinkshere.php 2008-05-27 04:47:29 UTC (rev 35381) @@ -391,7 +391,7 @@ $options['LIMIT'] = intval( $limit ); $SQLqueries[] = '('.$this->mDb->selectSQLText( $tables, $fields, $conds, $fname, $options, $join_conds ).')'; } - // Contruct the final query. UNION the mini-queries and merge the results. + // Construct the final query. UNION the mini-queries and merge the results. $fields = 'page_id,page_namespace,page_title,page_is_redirect,MAX(is_template) AS template,MAX(is_image) AS image'; $SQL = "SELECT $fields FROM (" . implode(' UNION ',$SQLqueries) . ") AS result_links"; // Remove duplicates within the result set. _______________________________________________ MediaWiki-CVS mailing list MediaWiki-CVS[at]lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
|