Index: trunk/phase3/skins/common/wikibits.js |
— | — | @@ -92,7 +92,7 @@ |
93 | 93 | document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/Opera6Fixes.css">'); |
94 | 94 | } else if (is_opera_seven && !is_opera_95) { |
95 | 95 | document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/Opera7Fixes.css">'); |
96 | | - } else if (is_khtml) { |
| 96 | + } else if (is_khtml && skin == 'monobook' ) { |
97 | 97 | document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/KHTMLFixes.css">'); |
98 | 98 | } |
99 | 99 | } |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1353,7 +1353,7 @@ |
1354 | 1354 | * to ensure that client-side caches don't keep obsolete copies of global |
1355 | 1355 | * styles. |
1356 | 1356 | */ |
1357 | | -$wgStyleVersion = '160'; |
| 1357 | +$wgStyleVersion = '161'; |
1358 | 1358 | |
1359 | 1359 | |
1360 | 1360 | # Server-side caching: |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -413,6 +413,7 @@ |
414 | 414 | * (bug 14088) Excessively long block expiry times are rejected as invalid, |
415 | 415 | keeps the log page from being distorted. |
416 | 416 | * (bug 14708) Emulate INSERT...IGNORE with standard SQL for Postgres backend. |
| 417 | +* (bug 14717) Wikibits no longer tries to load KTHMLFixes on non-monobook skins |
417 | 418 | |
418 | 419 | === API changes in 1.13 === |
419 | 420 | |