Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -194,7 +194,6 @@ |
195 | 195 | text for a non-existent page |
196 | 196 | * (bug 11022) Use a more accurate page title for Special:Whatlinkshere and |
197 | 197 | Special:Recentchangeslinked |
198 | | -* Add link to user contributions in normal watchlist edit mode |
199 | 198 | |
200 | 199 | == Bugfixes since 1.10 == |
201 | 200 | |
Index: trunk/phase3/includes/WatchlistEditor.php |
— | — | @@ -411,12 +411,8 @@ |
412 | 412 | if( $redirect ) |
413 | 413 | $link = '<span class="watchlistredir">' . $link . '</span>'; |
414 | 414 | $tools[] = $skin->makeLinkObj( $title->getTalkPage(), wfMsgHtml( 'talkpagelinktext' ) ); |
415 | | - if( $title->exists() ) { |
| 415 | + if( $title->exists() ) |
416 | 416 | $tools[] = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'history_short' ), 'action=history' ); |
417 | | - } |
418 | | - if( $title->getNamespace() == NS_USER && !$title->isSubpage() ) { |
419 | | - $tools[] = $skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Contributions', $title->getText() ), wfMsgHtml( 'contributions' ) ); |
420 | | - } |
421 | 417 | return '<li>' |
422 | 418 | . Xml::check( 'titles[]', false, array( 'value' => $title->getPrefixedText() ) ) |
423 | 419 | . $link . ' (' . implode( ' | ', $tools ) . ')' . '</li>'; |