Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -242,8 +242,6 @@ |
243 | 243 | whitespace (broken XML feeds, etc.) |
244 | 244 | * Don't use garbled parser cache output when viewing custom CSS or JavaScript |
245 | 245 | pages |
246 | | -* (bug 10184) Site CSS/JS should be included after that added dynamically (e.g. |
247 | | - by extensions) |
248 | 246 | * (bug 10406) Fix Special:Listusers filter form for non-ASCII localizations |
249 | 247 | |
250 | 248 | |
Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -73,10 +73,6 @@ |
74 | 74 | |
75 | 75 | <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath' ) ?>/common/wikibits.js?<?php echo $GLOBALS['wgStyleVersion'] ?>"><!-- wikibits js --></script> |
76 | 76 | <?php if($this->data['jsvarurl' ]) { ?> |
77 | | - |
78 | | - <!-- Head Scripts --> |
79 | | -<?php $this->html('headscripts') ?> |
80 | | - |
81 | 77 | <script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('jsvarurl' ) ?>"><!-- site js --></script> |
82 | 78 | <?php } ?> |
83 | 79 | <?php if($this->data['pagecss' ]) { ?> |
— | — | @@ -92,6 +88,8 @@ |
93 | 89 | <script type="<?php $this->text('jsmimetype') ?>"><?php $this->html('userjsprev') ?></script> |
94 | 90 | <?php } |
95 | 91 | if($this->data['trackbackhtml']) print $this->data['trackbackhtml']; ?> |
| 92 | + <!-- Head Scripts --> |
| 93 | +<?php $this->html('headscripts') ?> |
96 | 94 | </head> |
97 | 95 | <body <?php if($this->data['body_ondblclick']) { ?>ondblclick="<?php $this->text('body_ondblclick') ?>"<?php } ?> |
98 | 96 | <?php if($this->data['body_onload' ]) { ?>onload="<?php $this->text('body_onload') ?>"<?php } ?> |