From bc5f113fd0f5d9604ea7cbd3ff7ef339da7a5b79 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 27 May 2008 04:47:29 +0000 Subject: [PATCH] Doc typo --- includes/SpecialWhatlinkshere.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.20.1