From 1d7ddb9819a4865df3a809a73df1d03361a52675 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 12 Jul 2009 13:49:40 +0000 Subject: [PATCH] * fix typo in calculation of static directory / local css --- webcit/webcit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/webcit.c b/webcit/webcit.c index e89d2e97b..5779dbd69 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -793,7 +793,7 @@ InitModule_WEBCIT RegisterNamespace("IMPORTANTMESSAGE", 0, 0, tmplput_importantmessage, CTX_NONE); RegisterNamespace("TRAILING_JAVASCRIPT", 0, 0, tmplput_trailing_javascript, CTX_NONE); - snprintf(dir, SIZ, "%s/static.local/webcit.css", static_local_dir); + snprintf(dir, SIZ, "%s/webcit.css", static_local_dir); if (!access(dir, R_OK)) { lprintf(9, "Using local Stylesheet [%s]\n", dir); csslocal = NewStrBufPlain(HKEY("")); -- 2.39.2