Bug 32673: Keep the username in the input field if not existing
[lhc/web/wiklou.git] / includes / specials / SpecialUnwatchedpages.php
index 5ad9bb5..22c6485 100644 (file)
@@ -34,7 +34,7 @@ class UnwatchedpagesPage extends QueryPage {
        function __construct( $name = 'Unwatchedpages' ) {
                parent::__construct( $name, 'unwatchedpages' );
        }
-       
+
        function isExpensive() { return true; }
        function isSyndicated() { return false; }
 
@@ -55,28 +55,34 @@ class UnwatchedpagesPage extends QueryPage {
        }
 
        function sortDescending() { return false; }
-       
+
        function getOrderFields() {
                return array( 'page_namespace', 'page_title' );
        }
 
+       /**
+        * @param $skin Skin
+        * @param $result
+        * @return string
+        */
        function formatResult( $skin, $result ) {
                global $wgContLang;
 
                $nt = Title::makeTitle( $result->namespace, $result->title );
                $text = $wgContLang->convert( $nt->getPrefixedText() );
 
-               $plink = $skin->linkKnown(
+               $plink = Linker::linkKnown(
                        $nt,
                        htmlspecialchars( $text )
                );
-               $wlink = $skin->linkKnown(
+               $token = WatchAction::getWatchToken( $nt, $this->getUser() );
+               $wlink = Linker::linkKnown(
                        $nt,
                        wfMsgHtml( 'watch' ),
                        array(),
-                       array( 'action' => 'watch' )
+                       array( 'action' => 'watch', 'token' => $token )
                );
 
-               return wfSpecialList( $plink, $wlink );
+               return $this->getLanguage()->specialList( $plink, $wlink );
        }
 }