From 5311a2717dd168143859effebe6a96c486d29447 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 23 Dec 2008 23:47:08 +0000 Subject: [PATCH] Fix fucked up indentation --- includes/CategoryPage.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/includes/CategoryPage.php b/includes/CategoryPage.php index f5c2540830..4ac24b5f46 100644 --- a/includes/CategoryPage.php +++ b/includes/CategoryPage.php @@ -223,14 +223,14 @@ class CategoryViewer { array( 'page', 'categorylinks', 'category' ), array( 'page_title', 'page_namespace', 'page_len', 'page_is_redirect', 'cl_sortkey', 'cat_id', 'cat_title', 'cat_subcats', 'cat_pages', 'cat_files' ), - array( $pageCondition, - 'cl_to' => $this->title->getDBkey() ), + array( $pageCondition, 'cl_to' => $this->title->getDBkey() ), __METHOD__, array( 'ORDER BY' => $this->flip ? 'cl_sortkey DESC' : 'cl_sortkey', - 'USE INDEX' => array( 'categorylinks' => 'cl_sortkey' ), - 'LIMIT' => $this->limit + 1 ), + 'USE INDEX' => array( 'categorylinks' => 'cl_sortkey' ), + 'LIMIT' => $this->limit + 1 ), array( 'categorylinks' => array( 'INNER JOIN', 'cl_from = page_id' ), - 'category' => array( 'LEFT JOIN', 'cat_title = page_title AND page_namespace = ' . NS_CATEGORY ) ) ); + 'category' => array( 'LEFT JOIN', 'cat_title = page_title AND page_namespace = ' . NS_CATEGORY ) ) + ); $count = 0; $this->nextPage = null; -- 2.20.1