From e07a7081bcb98adb8a0561962f82610866cd7a31 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Wed, 30 Dec 2009 15:32:58 +0000 Subject: [PATCH] MDL-20204 sheet name first, thanks Urs --- lib/outputlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/outputlib.php b/lib/outputlib.php index 21782c6cb0..65792f291c 100644 --- a/lib/outputlib.php +++ b/lib/outputlib.php @@ -625,7 +625,7 @@ class theme_config { } } foreach ($css['theme'] as $sheet=>$unused) { - $urls[] = new moodle_url($url, array('theme'=>$this->name,'type'=>'theme', 'sheet'=>$sheet)); + $urls[] = new moodle_url($url, array('sheet'=>$sheet, 'theme'=>$this->name, 'type'=>'theme')); // sheet first in order to make long urls easier to read } return $urls; } -- 2.39.5