Index: trunk/phase3/skins/Standard.php |
— | — | @@ -227,6 +227,10 @@ |
228 | 228 | # "Post a comment" link |
229 | 229 | if( ( $wgTitle->isTalkPage() || $wgOut->showNewSectionLink() ) && $action != 'edit' && !$wpPreview ) |
230 | 230 | $s .= '<br />' . $this->makeKnownLinkObj( $wgTitle, wfMsg( 'postcomment' ), 'action=edit§ion=new' ); |
| 231 | + |
| 232 | + #if( $tns%2 && $action!='edit' && !$wpPreview) { |
| 233 | + #$s.= '<br />'.$this->makeKnownLink($wgTitle->getPrefixedText(),wfMsg('postcomment'),'action=edit§ion=new'); |
| 234 | + #} |
231 | 235 | |
232 | 236 | /* |
233 | 237 | watching could cause problems in edit mode: |
— | — | @@ -250,7 +254,12 @@ |
251 | 255 | if ($articleExists && $action !='history') { |
252 | 256 | $s .= $sep . $this->historyLink(); |
253 | 257 | } |
| 258 | + $s.=$sep . $this->whatLinksHere(); |
254 | 259 | |
| 260 | + if($wgOut->isArticleRelated()) { |
| 261 | + $s .= $sep . $this->watchPageLinksLink(); |
| 262 | + } |
| 263 | + |
255 | 264 | if ( NS_USER == $wgTitle->getNamespace() |
256 | 265 | || $wgTitle->getNamespace() == NS_USER_TALK ) { |
257 | 266 | |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1160,11 +1160,15 @@ |
1161 | 1161 | global $wgOut; |
1162 | 1162 | $sep = " |\n"; |
1163 | 1163 | |
1164 | | - $s = $this->mainPageLink(); |
| 1164 | + $s = $this->mainPageLink() . $sep |
| 1165 | + . $this->specialLink( 'recentchanges' ); |
1165 | 1166 | |
1166 | 1167 | if ( $wgOut->isArticleRelated() ) { |
1167 | | - $s .= $sep . $this->editThisPage() . $sep . $this->historyLink(); |
| 1168 | + $s .= $sep . $this->editThisPage() |
| 1169 | + . $sep . $this->historyLink(); |
1168 | 1170 | } |
| 1171 | + # Many people don't like this dropdown box |
| 1172 | + #$s .= $sep . $this->specialPagesList(); |
1169 | 1173 | |
1170 | 1174 | $s .= $this->variantLinks(); |
1171 | 1175 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -462,7 +462,9 @@ |
463 | 463 | * Ensure that all HTML id's begin with a letter as required by XHTML standard |
464 | 464 | * Image moving over an existing file no longer throws a database error |
465 | 465 | * (bug 14117) Image redirects from the shared repo now show "redirected from" |
| 466 | +* (bug 16786) Restored "redundant" links recently removed from Classic sidebar |
466 | 467 | |
| 468 | + |
467 | 469 | === API changes in 1.14 === |
468 | 470 | |
469 | 471 | * Registration time of users registered before the DB field was created is now |