Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -842,7 +842,7 @@ |
843 | 843 | $content_navigation['views']['view'] = $this->tabAction( |
844 | 844 | $isTalk ? $talkPage : $subjectPage, |
845 | 845 | !wfEmptyMsg( "$skname-view-view" ) ? "$skname-view-view" : 'view', |
846 | | - ( $onPage && $action == 'view' ), '', true |
| 846 | + ( $onPage && ($action == 'view' || $action == 'purge' ) ), '', true |
847 | 847 | ); |
848 | 848 | $content_navigation['views']['view']['redundant'] = true; // signal to hide this from simple content_actions |
849 | 849 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -73,6 +73,8 @@ |
74 | 74 | * (bug 25506) Exception is thrown if OutputPage::parse is called inside a tag hook, |
75 | 75 | which would reset parser state |
76 | 76 | * (bug 26208) Mark directionality of some interlanguage links |
| 77 | +* (bug 26034) Make the "View / Read" tab in content_navigation style tabs remain |
| 78 | + selected when the action is "purge". |
77 | 79 | |
78 | 80 | === API changes in 1.18 === |
79 | 81 | * (bug 26339) Throw warning when truncating an overlarge API result |