From: Sam Hemelryk Date: Wed, 6 Jan 2010 01:56:20 +0000 (+0000) Subject: output MDL-20204 Fixed regression in recent theme changes, thanks Rossie for spotting X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c71c725ec3219bafe5f9ad443b1f0f2620a86c9b;p=moodle.git output MDL-20204 Fixed regression in recent theme changes, thanks Rossie for spotting --- diff --git a/lib/outputlib.php b/lib/outputlib.php index ece920ab32..595e457519 100644 --- a/lib/outputlib.php +++ b/lib/outputlib.php @@ -629,7 +629,7 @@ class theme_config { } foreach ($css['parents'] as $parent=>$sheets) { foreach ($sheets as $sheet=>$unused2) { - $urls[] = new moodle_url($$baseurl, array('theme'=>$this->name,'type'=>'parent', 'subtype'=>$parent, 'sheet'=>$sheet)); + $urls[] = new moodle_url($baseurl, array('theme'=>$this->name,'type'=>'parent', 'subtype'=>$parent, 'sheet'=>$sheet)); } } foreach ($css['theme'] as $sheet=>$unused) {