Fix SpecialUpload::unsaveUploadedFile(). Move UploadVerification hook so that it...
[lhc/web/wiklou.git] / includes / SpecialSpecialpages.php
index 91b7147..bb20235 100644 (file)
@@ -1,37 +1,23 @@
 <?php
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
 
 /**
  *
  */
 function wfSpecialSpecialpages() {
-       global $wgLang, $wgOut, $wgUser, $wgAvailableRights;
-       
+       global $wgOut, $wgUser;
+
        $wgOut->setRobotpolicy( 'index,nofollow' );
        $sk = $wgUser->getSkin();
-       
-       # Get listable pages, in a 2-d array with the first dimension being user right
-       $pages = SpecialPage::getPages();
 
        /** Pages available to all */
-       wfSpecialSpecialpages_gen($pages[''],'spheading',$sk);
+       wfSpecialSpecialpages_gen( SpecialPage::getRegularPages(), 'spheading', $sk );
 
        /** Restricted special pages */
-       $rpages = array();
-       foreach($wgAvailableRights as $right) {
-               /** only show pages a user can access */
-               if( $wgUser->isAllowed($right) ) {
-                       /** some rights might not have any special page associated */
-                       if(isset($pages[$right])) {
-                               $rpages = array_merge( $rpages, $pages[$right] );
-                       }
-               }
-       }
-       wfSpecialSpecialpages_gen( $rpages, 'restrictedpheading', $sk );
+       wfSpecialSpecialpages_gen( SpecialPage::getRestrictedPages(), 'restrictedpheading', $sk );
 }
 
 /**
@@ -41,21 +27,21 @@ 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 ) {
+       foreach ( $pages as $page ) {
                if ( $page->isListed() ) {
                        $sortedPages[$page->getDescription()] = $page->getTitle();
                }
        }
-       
+
        /** Sort */
        if ( $wgSortSpecialPages ) {
                ksort( $sortedPages );
@@ -64,7 +50,7 @@ function wfSpecialSpecialpages_gen($pages,$heading,$sk) {
        /** Now output the HTML */
        $wgOut->addHTML( '<h2>' . wfMsgHtml( $heading ) . "</h2>\n<ul>" );
        foreach ( $sortedPages as $desc => $title ) {
-               $link = $sk->makeKnownLinkObj( $title, $desc );
+               $link = $sk->makeKnownLinkObj( $title , htmlspecialchars( $desc ) );
                $wgOut->addHTML( "<li>{$link}</li>\n" );
        }
        $wgOut->addHTML( "</ul>\n" );