Clean up after r14751:
[lhc/web/wiklou.git] / includes / SpecialSpecialpages.php
index 7fc0c1b..0b53db7 100644 (file)
@@ -9,11 +9,11 @@
  *
  */
 function wfSpecialSpecialpages() {
-       global $wgLang, $wgOut, $wgUser, $wgAvailableRights;
-       
+       global $wgOut, $wgUser, $wgAvailableRights;
+
        $wgOut->setRobotpolicy( 'index,nofollow' );
-       $sk = $wgUser->getSkin();       
-       
+       $sk = $wgUser->getSkin();
+
        # Get listable pages, in a 2-d array with the first dimension being user right
        $pages = SpecialPage::getPages();
 
@@ -41,13 +41,13 @@ function wfSpecialSpecialpages() {
  * @param $sk skin object ???
  */
 function wfSpecialSpecialpages_gen($pages,$heading,$sk) {
-       global $wgLang, $wgOut, $wgSortSpecialPages;
+       global $wgOut, $wgSortSpecialPages;
 
        if( count( $pages ) == 0 ) {
                # Yeah, that was pointless. Thanks for coming.
                return;
        }
-       
+
        /** Put them into a sortable array */
        $sortedPages = array();
        foreach ( $pages as $name => $page ) {
@@ -55,7 +55,7 @@ function wfSpecialSpecialpages_gen($pages,$heading,$sk) {
                        $sortedPages[$page->getDescription()] = $page->getTitle();
                }
        }
-       
+
        /** Sort */
        if ( $wgSortSpecialPages ) {
                ksort( $sortedPages );