git » blitiri » commit d209a0e

Use text/css as Content-type when rendering the style sheet

author Leandro Lucarella
2008-08-08 17:50:34 UTC
committer Alberto Bertogli
2008-08-08 22:53:19 UTC
parent 453ef6e633943c6f8bab3c719e24668aeba34836

Use text/css as Content-type when rendering the style sheet

blitiri.cgi +1 -1

diff --git a/blitiri.cgi b/blitiri.cgi
index 829a8cd..b95d5ca 100755
--- a/blitiri.cgi
+++ b/blitiri.cgi
@@ -582,7 +582,7 @@ def render_atom(articles):
 
 
 def render_style():
-	print 'Content-type: text/plain\n'
+	print 'Content-type: text/css\r\n\r\n',
 	print default_css
 
 def handle_cgi():