Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -248,6 +248,7 @@ |
249 | 249 | * (bug 31676) Group dynamically inserted CSS into a single <style> tag, to work |
250 | 250 | around a bug where not all styles were applied in Internet Explorer |
251 | 251 | * (bug 28936, bug 5280) Broken or invalid titles can't be removed from watchlist. |
| 252 | +* (bug 34600) Older skins using useHeadElement=false were broken in 1.18 |
252 | 253 | |
253 | 254 | === API changes in 1.19 === |
254 | 255 | * Made action=edit less likely to return "unknownerror", by returning the actual error |
Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -460,7 +460,7 @@ |
461 | 461 | if ( $this->useHeadElement ) { |
462 | 462 | $tpl->set( 'headelement', $out->headElement( $this ) ); |
463 | 463 | } else { |
464 | | - $tpl->set( 'headscripts', $out->getScript() ); |
| 464 | + $tpl->set( 'headscripts', $out->getHeadScripts() . $out->getHeadItems() ); |
465 | 465 | } |
466 | 466 | |
467 | 467 | $tpl->set( 'debughtml', $this->generateDebugHTML() ); |