Pass the two titles in plain text as (unused per default) parameters $3 and $4 to...
authorRob Church <robchurch@users.mediawiki.org>
Thu, 28 Jun 2007 18:18:42 +0000 (18:18 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Thu, 28 Jun 2007 18:18:42 +0000 (18:18 +0000)
includes/SpecialMovepage.php

index 49c9197..5ebf1e6 100644 (file)
@@ -278,7 +278,8 @@ class MovePageForm {
                $olink = $wgUser->getSkin()->makeKnownLinkObj( $old, '', 'redirect=no' );
                $nlink = $wgUser->getSkin()->makeKnownLinkObj( $new );
 
-               $wgOut->addHtml( wfMsgExt( 'movepage-moved', array( 'parseinline', 'replaceafter' ), $olink, $nlink ) );
+               $wgOut->addHtml( wfMsgExt( 'movepage-moved', array( 'parseinline', 'replaceafter' ),
+                       $olink, $nlink, $old->getPrefixedText(), $new->getPrefixedText() ) );
 
                if ( $talkmoved == 1 ) {
                        $wgOut->addWikiText( wfMsg( 'talkpagemoved' ) );