Last modified: 2007-08-28 23:51:25 UTC
After moving a page, I often want to delete the original page. This would require one step less if the link to A in the "move succeeded" notice (Page "A" moved to "B") pointed to A&redirect=no instead of A (which results in a redirect to B).
I could swear blind I fixed this once before...
I had a look into the sources: includes/SpecialMovepage.php, MovePageForm::showSuccess: $oldText = wfEscapeWikiText( $wgRequest->getVal('oldtitle') ); $newText = wfEscapeWikiText( $wgRequest->getVal('newtitle') ); ... $text = wfMsg( 'pagemovedtext', $oldText, $newText ); ... $wgOut->addWikiText( $text ); language/Messages.php: 'pagemovedtext' => "Page \"[[$1]]\" moved to \"[[$2]]\".", There's nothing like "redirect=no" :-(
This was addressed in r23513, r23515 and r23604.