Index: trunk/phase3/skins/Nostalgia.php |
— | — | @@ -25,12 +25,13 @@ |
26 | 26 | |
27 | 27 | function doBeforeContent() { |
28 | 28 | |
29 | | - $s = "\n<div id='content'>\n<div id='topbar'>"; |
30 | | - $s .= $this->logoText( "right" ); |
| 29 | + $s .= "\n<div id='content'>\n<div id='top'>\n"; |
| 30 | + $s .= "<div id=\"topbar\">".$this->logoText( "right" )."</div>"; |
31 | 31 | |
32 | 32 | $s .= $this->pageTitle(); |
33 | 33 | $s .= $this->pageSubtitle() . "\n"; |
34 | 34 | |
| 35 | + $s .= "<div id=\"topbar\">"; |
35 | 36 | $s .= $this->topLinks() . "\n<br />"; |
36 | 37 | |
37 | 38 | $notice = wfGetSiteNotice(); |
— | — | @@ -45,7 +46,7 @@ |
46 | 47 | $cat = $this->getCategoryLinks(); |
47 | 48 | if($cat) $s .= "<br />" . $cat; |
48 | 49 | |
49 | | - $s .= "<br clear='all' /><hr />\n</div>\n"; |
| 50 | + $s .= "<br clear='all' /></div><hr />\n</div>\n"; |
50 | 51 | $s .= "\n<div id='article'>"; |
51 | 52 | |
52 | 53 | return $s; |
— | — | @@ -62,17 +63,17 @@ |
63 | 64 | $s .= $sep . $this->editThisPage() |
64 | 65 | . $sep . $this->historyLink(); |
65 | 66 | } |
66 | | - |
| 67 | + |
67 | 68 | /* show links to different language variants */ |
68 | 69 | $s .= $this->variantLinks(); |
69 | 70 | $s .= $this->extensionTabLinks(); |
70 | | - |
| 71 | + |
71 | 72 | if ( $wgUser->isAnon() ) { |
72 | 73 | $s .= $sep . $this->specialLink( "userlogin" ); |
73 | 74 | } else { |
74 | 75 | $s .= $sep . $this->specialLink( "userlogout" ); |
75 | 76 | } |
76 | | - |
| 77 | + |
77 | 78 | $s .= $sep . $this->specialPagesList(); |
78 | 79 | |
79 | 80 | return $s; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -246,6 +246,7 @@ |
247 | 247 | * Links with no title but a curid parameter now use the curid to pick a page |
248 | 248 | * (bug 10323) Special:Undelete should have "inverse selection" button |
249 | 249 | * (bug 15831) Modern skin RTL support is bugous |
| 250 | +* (bug 15869) Nostalgia skin does not show page title in printable mode |
250 | 251 | |
251 | 252 | === API changes in 1.14 === |
252 | 253 | |