From: Aaron Schulz Date: Tue, 27 May 2008 04:47:29 +0000 (+0000) Subject: Doc typo X-Git-Tag: 1.31.0-rc.0~47361 X-Git-Url: http://git.cyclocoop.org//%27http:/code.google.com/p/ie7-js//%27?a=commitdiff_plain;h=bc5f113fd0f5d9604ea7cbd3ff7ef339da7a5b79;p=lhc%2Fweb%2Fwiklou.git Doc typo --- diff --git a/includes/SpecialWhatlinkshere.php b/includes/SpecialWhatlinkshere.php index 3a0797409b..c129159f80 100644 --- a/includes/SpecialWhatlinkshere.php +++ b/includes/SpecialWhatlinkshere.php @@ -391,7 +391,7 @@ class WhatLinksHerePager extends AlphabeticPager { $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.