From b94228cbebea2b24a9335e49c949eb68f6b16d7e Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 18 Jan 2007 16:28:53 +0000 Subject: [PATCH] * ndirs=3 (tiny_mce wasn't getting delivered) --- webcit/webserver.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webcit/webserver.c b/webcit/webserver.c index a263c9c92..b8d54b1c0 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -37,10 +37,11 @@ char *static_dirs[]={ /**< needs same sort order as the web mapping */ (char*)static_dir, /** our templates on disk */ (char*)editor_absolut_dir /** the editor on disk */ }; -int ndirs=2; //sizeof(static_content_dirs);//sizeof(char *); /** * Subdirectories from which the client may request static content + * + * (If you add more, remember to increment 'ndirs' below) */ char *static_content_dirs[] = { "static", /** static templates */ @@ -48,6 +49,7 @@ char *static_content_dirs[] = { "tiny_mce" /** the JS editor */ }; +int ndirs=3; char *server_cookie = NULL; /**< our Cookie connection to the client */ -- 2.39.2