Index: trunk/phase3/includes/PageHistory.php |
— | — | @@ -70,10 +70,8 @@ |
71 | 71 | |
72 | 72 | $logPage = SpecialPage::getTitleFor( 'Log' ); |
73 | 73 | $logLink = $this->mSkin->makeKnownLinkObj( $logPage, wfMsgHtml( 'viewpagelogs' ), 'page=' . $this->mTitle->getPrefixedUrl() ); |
| 74 | + $wgOut->setSubtitle( $logLink ); |
74 | 75 | |
75 | | - $subtitle = wfMsgHtml( 'revhistory' ) . '<br />' . $logLink; |
76 | | - $wgOut->setSubtitle( $subtitle ); |
77 | | - |
78 | 76 | $feedType = $wgRequest->getVal( 'feed' ); |
79 | 77 | if( $feedType ) { |
80 | 78 | wfProfileOut( $fname ); |
— | — | @@ -89,7 +87,6 @@ |
90 | 88 | return; |
91 | 89 | } |
92 | 90 | |
93 | | - |
94 | 91 | /* |
95 | 92 | * "go=first" means to jump to the last (earliest) history page. |
96 | 93 | * This is deprecated, it no longer appears in the user interface |
— | — | @@ -99,7 +96,7 @@ |
100 | 97 | $wgOut->redirect( $wgTitle->getLocalURL( "action=history&limit={$limit}&dir=prev" ) ); |
101 | 98 | return; |
102 | 99 | } |
103 | | - |
| 100 | + |
104 | 101 | wfRunHooks( 'PageHistoryBeforeList', array( &$this->mArticle ) ); |
105 | 102 | |
106 | 103 | /** |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1102,7 +1102,6 @@ |
1103 | 1103 | The reason given by $3 is ''$2''", |
1104 | 1104 | |
1105 | 1105 | # History pages |
1106 | | -'revhistory' => 'Revision history', |
1107 | 1106 | 'viewpagelogs' => 'View logs for this page', |
1108 | 1107 | 'nohistory' => 'There is no edit history for this page.', |
1109 | 1108 | 'revnotfound' => 'Revision not found', |
Index: trunk/phase3/languages/messages/MessagesDe.php |
— | — | @@ -775,7 +775,6 @@ |
776 | 776 | Grund der Sperre: ''$2''", |
777 | 777 | |
778 | 778 | # History pages |
779 | | -'revhistory' => 'Frühere Versionen', |
780 | 779 | 'viewpagelogs' => 'Logbücher für diese Seite anzeigen', |
781 | 780 | 'nohistory' => 'Es gibt keine früheren Versionen dieser Seite.', |
782 | 781 | 'revnotfound' => 'Diese Version wurde nicht gefunden.', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -211,8 +211,8 @@ |
212 | 212 | * Graceful behavior for updateRestrictions.php if a page already has records |
213 | 213 | in the page_restrictions matching its old page_restrictions field. |
214 | 214 | May help with odd upgrade issues or race condition. |
| 215 | +* (bug 11993) Remove contentsub "revision history" |
215 | 216 | |
216 | | - |
217 | 217 | == Parser changes in 1.12 == |
218 | 218 | |
219 | 219 | The parser pass order has changed from |