[or-cvs] r14527: Fix a spurious space that caused IE. Thanks to Picasso- "dre (check/trunk/cgi-bin)

ioerror at seul.org ioerror at seul.org
Thu May 1 09:48:51 UTC 2008


Author: ioerror
Date: 2008-05-01 05:48:50 -0400 (Thu, 01 May 2008)
New Revision: 14527

Modified:
   check/trunk/cgi-bin/index.py
Log:
Fix a spurious space that caused IE. Thanks to Picasso- "dream of me in jello" for finding the issue and arma for the fix.


Modified: check/trunk/cgi-bin/index.py
===================================================================
--- check/trunk/cgi-bin/index.py	2008-05-01 07:16:12 UTC (rev 14526)
+++ check/trunk/cgi-bin/index.py	2008-05-01 09:48:50 UTC (rev 14527)
@@ -110,7 +110,7 @@
     UsingTor = isUsingTor(req.connection.remote_ip)
 
     req.send_http_header()
-    req.content_type = 'text/html ;charset=utf-8'
+    req.content_type = 'text/html; charset=utf-8'
 
     # First lets construct the simple webpage:
     req.write('<html>\n')



More information about the tor-commits mailing list