Index: trunk/phpwiki/newcodebase/Article.php |
— | — | @@ -732,7 +732,10 @@ |
733 | 733 | $wgOut->setPagetitle( wfMsg( "addedwatch" ) ); |
734 | 734 | $wgOut->setRobotpolicy( "noindex,follow" ); |
735 | 735 | |
736 | | - $text = str_replace( "$1", $wgTitle->getPrefixedText(), |
| 736 | + $sk = $wgUser->getSkin() ; |
| 737 | + $link = $sk->makeKnownLink ( $wgTitle->getPrefixedText() ) ; |
| 738 | + |
| 739 | + $text = str_replace( "$1", $link , |
737 | 740 | wfMsg( "addedwatchtext" ) ); |
738 | 741 | $wgOut->addHTML( $text ); |
739 | 742 | |