Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -664,7 +664,6 @@ |
665 | 665 | 'edit-conflict', |
666 | 666 | 'edit-no-change', |
667 | 667 | 'edit-already-exists', |
668 | | - 'editinguserpage', |
669 | 668 | 'addsection-preload', |
670 | 669 | 'addsection-editintro', |
671 | 670 | ), |
Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -51,7 +51,6 @@ |
52 | 52 | * (bug 30344) Add configuration variable for setting custom priorities when |
53 | 53 | generating sitemaps |
54 | 54 | * (bug 16428) Include permalink in printable version |
55 | | -* (bug 5865) Warning on editing other user's userpage |
56 | 55 | |
57 | 56 | === Bug fixes in 1.19 === |
58 | 57 | * $wgUploadNavigationUrl should be used for file redlinks if |
Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -1605,15 +1605,6 @@ |
1606 | 1606 | } |
1607 | 1607 | } |
1608 | 1608 | |
1609 | | - $curUP = $wgUser->getUserPage(); |
1610 | | - if ( $this->mTitle->getNamespace() == NS_USER |
1611 | | - && substr( $this->mTitle->getPrefixedText(), 0, strlen( $curUP->getPrefixedText() ) ) != $curUP->getPrefixedText() |
1612 | | - && $this->formtype != 'preview' |
1613 | | - && $this->formtype != 'diff' ) |
1614 | | - { |
1615 | | - $wgOut->addHTML( wfMessage( 'editinguserpage', $this->mTitle->getTalkPage()->getFullURL( 'action=edit' ) )->parse() ); |
1616 | | - } |
1617 | | - |
1618 | 1609 | if ( wfReadOnly() ) { |
1619 | 1610 | $wgOut->wrapWikiMsg( "<div id=\"mw-read-only-warning\">\n$1\n</div>", array( 'readonlywarning', wfReadOnlyReason() ) ); |
1620 | 1611 | } elseif ( $wgUser->isAnon() ) { |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1437,7 +1437,6 @@ |
1438 | 1438 | 'edit-no-change' => 'Your edit was ignored, because no change was made to the text.', |
1439 | 1439 | 'edit-already-exists' => 'Could not create a new page. |
1440 | 1440 | It already exists.', |
1441 | | -'editinguserpage' => "'''Note:''' You are editing a [[Help:User page|user page]]. To leave this user a message, [$1 edit their talk page].", |
1442 | 1441 | 'addsection-preload' => '', # do not translate or duplicate this message to other languages |
1443 | 1442 | 'addsection-editintro' => '', # do not translate or duplicate this message to other languages |
1444 | 1443 | |