diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-03-22 22:58:12 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-03-22 22:58:12 +0100 |
commit | 0d024d57e43c899fa3ee2673fe27e5798f509113 (patch) | |
tree | 3668e1f604238d017bd98cda5ced5825f96551df | |
parent | c6ad68e0cf0ca84fb01232df2f4526636ab5ea16 (diff) |
Add missing content type
-rwxr-xr-x | blogthon.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 1041774..0224fc4 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -54,6 +54,7 @@ def errorpage(string): def document_header(string): if string == "html": + print "Content-type: text/html\n" print "<!DOCTYPE html>" print "<html>" if string == "atom": |