From: Brion Vibber Date: Thu, 29 Sep 2005 07:55:46 +0000 (+0000) Subject: refs breakage on php 5.1... didn't i fix this before? X-Git-Tag: 1.6.0~1565 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=14fb4da75e8dacdb2569e5aa4c2b58917eb5d6af;p=lhc%2Fweb%2Fwiklou.git refs breakage on php 5.1... didn't i fix this before? --- diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index d29d826a81..7a4b5a2a7c 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -251,7 +251,7 @@ class SkinTemplate extends Skin { $tpl->setRef( 'username', $this->username ); $tpl->setRef( 'userpage', $this->userpage); $tpl->setRef( 'userpageurl', $this->userpageUrlDetails['href']); - $tpl->setRef( 'pagecss', $this->setupPageCss() ); + $tpl->set( 'pagecss', $this->setupPageCss() ); $tpl->setRef( 'usercss', $this->usercss); $tpl->setRef( 'userjs', $this->userjs); $tpl->setRef( 'userjsprev', $this->userjsprev);