Index: trunk/phase3/skins/common/wikibits.js |
— | — | @@ -114,7 +114,9 @@ |
115 | 115 | // Uses DOM calls to avoid document.write + XHTML issues |
116 | 116 | |
117 | 117 | var linkHolder = document.getElementById('toctitle'); |
118 | | - if (!linkHolder) { |
| 118 | + var existingLink = document.getElementById('togglelink'); |
| 119 | + if (!linkHolder || existingLink) { |
| 120 | + // Don't add the toggle link twice |
119 | 121 | return; |
120 | 122 | } |
121 | 123 | |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1496,7 +1496,7 @@ |
1497 | 1497 | * to ensure that client-side caches do not keep obsolete copies of global |
1498 | 1498 | * styles. |
1499 | 1499 | */ |
1500 | | -$wgStyleVersion = '227'; |
| 1500 | +$wgStyleVersion = '228'; |
1501 | 1501 | |
1502 | 1502 | |
1503 | 1503 | # Server-side caching: |