Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -191,7 +191,7 @@ |
192 | 192 | $this->setupUserCss( $out ); |
193 | 193 | |
194 | 194 | $tpl->set( 'pagecss', $this->setupPageCss() ); |
195 | | - $tpl->setRef( 'usercss', $this->usercss ); |
| 195 | + $tpl->set( 'usercss', false ); |
196 | 196 | |
197 | 197 | $this->userjs = $this->userjsprev = false; |
198 | 198 | # FIXME: this is the only use of OutputPage::isUserJsAllowed() anywhere; can we |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -207,7 +207,6 @@ |
208 | 208 | */ |
209 | 209 | protected function setMembers() { |
210 | 210 | $this->userpage = $this->getContext()->getUser()->getUserPage()->getPrefixedText(); |
211 | | - $this->usercss = false; |
212 | 211 | } |
213 | 212 | |
214 | 213 | /** |