Index: trunk/phase3/includes/specials/SpecialRevisiondelete.php |
— | — | @@ -183,7 +183,7 @@ |
184 | 184 | protected function showConvenienceLinks() { |
185 | 185 | global $wgOut, $wgUser, $wgLang; |
186 | 186 | # Give a link to the logs/hist for this page |
187 | | - if( $this->targetObj ) { |
| 187 | + if( $this->targetObj && $this->targetObj->getNamespace() != NS_SPECIAL ) { |
188 | 188 | $links = array(); |
189 | 189 | $logtitle = SpecialPage::getTitleFor( 'Log' ); |
190 | 190 | $links[] = $this->skin->linkKnown( |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -434,6 +434,8 @@ |
435 | 435 | DatabaseBase::getFlag() now have documentation |
436 | 436 | * (bug 19966) MediaWiki:License-header is now used for the licensing header in |
437 | 437 | the file description page instead of MediaWiki:License |
| 438 | +* (bug 20380) Link to history/log action at the top of Special:RevisionDelete |
| 439 | + are new more displayed when when doing log suppression |
438 | 440 | |
439 | 441 | == API changes in 1.16 == |
440 | 442 | |