git » wikiri » commit 435c699

The CSS content-type should be text/css, not text/plain.

author Alberto Bertogli
2007-12-30 06:16:07 UTC
committer Alberto Bertogli
2007-12-30 06:16:07 UTC
parent 36015d9d918272359c1b6ecd3f30efb31e6a2480

The CSS content-type should be text/css, not text/plain.

Tested also under IE, it works fine.

Signed-off-by: Alberto Bertogli <albertito@gmail.com>

wikiri.cgi +1 -1

diff --git a/wikiri.cgi b/wikiri.cgi
index f223841..2d5093f 100755
--- a/wikiri.cgi
+++ b/wikiri.cgi
@@ -547,7 +547,7 @@ def render_about():
 	print template.get_main_footer()
 
 def render_style():
-	print 'Content-type: text/plain\n'
+	print 'Content-type: text/css\n'
 	print default_css
 
 def handle_cgi():