summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-01-09 01:07:29 -0500
committerAndreas Gohr <andi@splitbrain.org>2010-01-09 11:23:35 +0100
commitd61e1b3e1988054815be230f97c416acc1033162 (patch)
treeaae6235a1507c4463727f6102c64c7676ec5c6a2 /inc
parent5cf31920a1920c348a360b2847233e43257f136f (diff)
downloadrpg-d61e1b3e1988054815be230f97c416acc1033162.tar.gz
rpg-d61e1b3e1988054815be230f97c416acc1033162.tar.bz2
re-order css links so the default one gets fetched first
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'inc')
-rw-r--r--inc/template.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/template.php b/inc/template.php
index 8fc70cfb8..4681300eb 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -334,10 +334,10 @@ function tpl_metaheaders($alt=true){
}
// load stylesheets
- $head['link'][] = array('rel'=>'stylesheet', 'media'=>'all', 'type'=>'text/css',
- 'href'=>DOKU_BASE.'lib/exe/css.php?s=all&t='.$conf['template'].'&tseed='.$tseed);
$head['link'][] = array('rel'=>'stylesheet', 'media'=>'screen', 'type'=>'text/css',
'href'=>DOKU_BASE.'lib/exe/css.php?t='.$conf['template'].'&tseed='.$tseed);
+ $head['link'][] = array('rel'=>'stylesheet', 'media'=>'all', 'type'=>'text/css',
+ 'href'=>DOKU_BASE.'lib/exe/css.php?s=all&t='.$conf['template'].'&tseed='.$tseed);
$head['link'][] = array('rel'=>'stylesheet', 'media'=>'print', 'type'=>'text/css',
'href'=>DOKU_BASE.'lib/exe/css.php?s=print&t='.$conf['template'].'&tseed='.$tseed);