Index: trunk/phpwiki/newcodebase/Article.php |
— | — | @@ -763,7 +763,10 @@ |
764 | 764 | $wgOut->setPagetitle( wfMsg( "removedwatch" ) ); |
765 | 765 | $wgOut->setRobotpolicy( "noindex,follow" ); |
766 | 766 | |
767 | | - $text = str_replace( "$1", $wgTitle->getPrefixedText(), |
| 767 | + $sk = $wgUser->getSkin() ; |
| 768 | + $link = $sk->makeKnownLink ( $wgTitle->getPrefixedText() ) ; |
| 769 | + |
| 770 | + $text = str_replace( "$1", $link , |
768 | 771 | wfMsg( "removedwatchtext" ) ); |
769 | 772 | $wgOut->addHTML( $text ); |
770 | 773 | |