AutoLoad RecentChange
[lhc/web/wiklou.git] / includes / SpecialWantedpages.php
index 8402bd5..c92f059 100644 (file)
@@ -82,8 +82,8 @@ class WantedPagesPage extends QueryPage {
                                # Make a redlink
                                $pageLink = $skin->makeBrokenLinkObj( $title );
                        } else {
-                               # Make a struck-out blue link
-                               $pageLink = "<s>" . $skin->makeKnownLinkObj( $title ) . "</s>";
+                               # Make a a struck-out normal link
+                               $pageLink = "<s>" . $skin->makeLinkObj( $title ) . "</s>";
                        }               
                } else {
                        # Not cached? Don't bother checking existence; it can't
@@ -92,8 +92,9 @@ class WantedPagesPage extends QueryPage {
                
                # Make a link to "what links here" if it's required
                $wlhLink = $this->nlinks
-                                       ? $this->makeWlhLink( $title, $skin, wfMsgHtml( 'nlinks',
-                                                       $wgLang->formatNum( $result->value ) ) )
+                                       ? $this->makeWlhLink( $title, $skin,
+                                                       wfMsgExt( 'nlinks', array( 'parsemag', 'escape'),
+                                                               $wgLang->formatNum( $result->value ) ) )
                                        : null;
                                        
                return wfSpecialList($pageLink, $wlhLink);