diff options
-rwxr-xr-x | blogthon.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 87c9eba..e205bc3 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -457,7 +457,7 @@ else: document_header("html") print(ind + "<head>") print(ind*2 + "<title>%s</title>" % blog_title) - print(ind*2 + "<base href=\"+s\" />" % blog_url) + print(ind*2 + "<base href=\"%s\" />" % blog_url) print(ind*2 + "<meta charset=\"utf-8\" />") print(ind*2 + "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />") print(ind*2 + "<meta name=\"keywords\" content=\"%s\" />" % keywords) |