Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -203,7 +203,7 @@ |
204 | 204 | <?php } ?></li><?php |
205 | 205 | } |
206 | 206 | |
207 | | - foreach( array('contributions', 'blockip', 'emailuser', 'upload', 'specialpages') as $special ) { |
| 207 | + foreach( array('contributions', 'blockip', 'emailuser', 'upload', 'specialpages', 'log') as $special ) { |
208 | 208 | |
209 | 209 | if($this->data['nav_urls'][$special]) { |
210 | 210 | ?><li id="t-<?php echo $special ?>"><a href="<?php echo htmlspecialchars($this->data['nav_urls'][$special]['href']) |
Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -839,6 +839,7 @@ |
840 | 840 | $nav_urls['upload'] = false; |
841 | 841 | } |
842 | 842 | $nav_urls['specialpages'] = array( 'href' => self::makeSpecialUrl( 'Specialpages' ) ); |
| 843 | + $nav_urls['log'] = array( 'href' => self::makeSpecialUrl( 'Log' ) ); |
843 | 844 | |
844 | 845 | // default permalink to being off, will override it as required below. |
845 | 846 | $nav_urls['permalink'] = false; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -131,6 +131,7 @@ |
132 | 132 | * (bug 9936) Per-edit suppression of preview-on-first edit with "preview=no" |
133 | 133 | * Allow showing a one-off preview on first edit with "preview=yes" |
134 | 134 | * (bug 9151) Remove timed redirects on "Return to X" pages for accessibility. |
| 135 | +* Add link to Special:Log into MonoBook toolbox |
135 | 136 | |
136 | 137 | == Bugfixes since 1.10 == |
137 | 138 | |