Archived
1
0

Fixes Issue #350

Make sure to put user.css after plugin output so that it can override it.
This commit is contained in:
Garvin Hicking
2015-06-26 12:59:52 +02:00
parent 49ed5fcc42
commit 64f32ef864
2 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -85,13 +85,13 @@ $out .= serendipity_printStylesheet(
serendipity_getTemplateFile($css_file, '')
);
serendipity_plugin_api::hook_event($css_hook, $out);
$out .= serendipity_printStylesheet(
serendipity_getTemplateFile($css_userfile, 'serendipityPath', true),
serendipity_getTemplateFile($css_userfile, '', true)
);
serendipity_plugin_api::hook_event($css_hook, $out);
echo $out;
//