From d48372cd324bc9cd57c6e336b8ef9d65234c66b0 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Thu, 9 Feb 2006 11:39:55 +0000 Subject: [PATCH] properly emit template path on install --- serendipity.css.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/serendipity.css.php b/serendipity.css.php index 962415f..b7019ed 100644 --- a/serendipity.css.php +++ b/serendipity.css.php @@ -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 : */ -?> -- 2.39.5