From: Aaron Schulz Date: Tue, 23 Dec 2008 23:47:08 +0000 (+0000) Subject: Fix fucked up indentation X-Git-Tag: 1.31.0-rc.0~43796 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=5311a2717dd168143859effebe6a96c486d29447;p=lhc%2Fweb%2Fwiklou.git Fix fucked up indentation --- 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;