Revert "(bug 16707) Add "rel='next'" link to login page to return to last page"
authorAryeh Gregor <simetrical@users.mediawiki.org>
Wed, 24 Dec 2008 19:07:03 +0000 (19:07 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Wed, 24 Dec 2008 19:07:03 +0000 (19:07 +0000)
This reverts commit 22524e7e3a432df722438400581d2d56ea566dc2.

includes/OutputPage.php

index f8dba71..dcd5c30 100644 (file)
@@ -1383,7 +1383,6 @@ class OutputPage {
         */
        public function addReturnTo( $title ) {
                global $wgUser;
-               $this->addLink( array( 'rel' => 'next', 'href' => $title->getFullUrl() ) );
                $link = wfMsg( 'returnto', $wgUser->getSkin()->makeLinkObj( $title ) );
                $this->addHTML( "<p>{$link}</p>\n" );
        }