diff options
Diffstat (limited to 'plugins/weblog')
| -rw-r--r-- | plugins/weblog/weblog.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/weblog/weblog.cpp b/plugins/weblog/weblog.cpp index 7ace0fb..07b6447 100644 --- a/plugins/weblog/weblog.cpp +++ b/plugins/weblog/weblog.cpp @@ -248,7 +248,11 @@ namespace {             std::string s = ""s)     : mGetRequestParam(GetRequestParam)     , mContents(s) -   , mHeader("<!DOCTYPE html><html><head><meta charset=\"utf-8\"/></head><body>") +   , mHeader("<!DOCTYPE html><html><head>" +             "<meta charset=\"utf-8\"/>" +             "<title>" + GetRequestParam("WEBLOG_NAME") + "</title>" +             "<meta name=\"keywords\" content=\"" + GetRequestParam("WEBLOG_KEYWORDS") + "\"/>" +             "</head><body>")     , mFooter("<br/><br/><br/><a href=\"" + mGetRequestParam("plugin_path") + "/impressum.html\">Impressum, Datenschutzerklärung</a></body></html>")    {    }  | 
