Index: trunk/phase3/skins/Nostalgia.php |
— | — | @@ -53,7 +53,7 @@ |
54 | 54 | } |
55 | 55 | |
56 | 56 | function topLinks() { |
57 | | - global $wgOut, $wgUser; |
| 57 | + global $wgOut, $wgUser, $wgEnableUploads; |
58 | 58 | $sep = " |\n"; |
59 | 59 | |
60 | 60 | $s = $this->mainPageLink() . $sep |
— | — | @@ -71,6 +71,9 @@ |
72 | 72 | if ( $wgUser->isAnon() ) { |
73 | 73 | $s .= $sep . $this->specialLink( "userlogin" ); |
74 | 74 | } else { |
| 75 | + if ( $wgEnableUploads ) { |
| 76 | + $s .= $sep . $this->specialLink( "upload" ); |
| 77 | + } |
75 | 78 | $s .= $sep . $this->specialLink( "userlogout" ); |
76 | 79 | } |
77 | 80 | |
Index: trunk/phase3/CREDITS |
— | — | @@ -58,6 +58,7 @@ |
59 | 59 | * Mormegil |
60 | 60 | * Nathaniel Herman |
61 | 61 | * Nathan Larson |
| 62 | +* Nikolaos S. Karastathis |
62 | 63 | * Paul Copperman |
63 | 64 | * RememberTheDot |
64 | 65 | * ST47 |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -189,6 +189,7 @@ |
190 | 190 | * (bug 15125) Add Public Domain to default options when installing. Patch by Nathan Larson. |
191 | 191 | * Set a special temporary directory for ImageMagick with $wgImageMagickTempDir |
192 | 192 | * (bug 16113) Show/hide for redirects in Special:NewPages |
| 193 | +* (bug 15903) Upload link was added to Nostalgia skin |
193 | 194 | |
194 | 195 | === Bug fixes in 1.14 === |
195 | 196 | |