]> git.mjollnir.org Git - s9y.git/commitdiff
properly issue the template path
authorgarvinhicking <garvinhicking>
Thu, 9 Feb 2006 11:39:48 +0000 (11:39 +0000)
committergarvinhicking <garvinhicking>
Thu, 9 Feb 2006 11:39:48 +0000 (11:39 +0000)
serendipity.css.php

index 962415fa26edf7961d834c60bea247106f73089c..b7019ede7c9631804858a5b325c3f2062915c6cf 100644 (file)
@@ -59,7 +59,7 @@ header('Content-type: text/css');
 
 if (IS_installed === false) {
     if (file_exists(S9Y_INCLUDE_PATH . 'templates/' . $serendipity['defaultTemplate'] . '/' . $css_file)) {
-        echo serendipity_printStylesheet('templates/' . $serendipity['defaultTemplate'] . '/' . $css_file);
+        echo serendipity_printStylesheet('templates/' . $serendipity['defaultTemplate'] . '/' . $css_file, 'templates/' . $serendipity['defaultTemplate'] . '/' . $css_file);
     }
     die();
 }
@@ -75,4 +75,3 @@ serendipity_plugin_api::hook_event($css_hook, $out);
 echo $out;
 
 /* vim: set sts=4 ts=4 expandtab : */
-?>