diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/logger.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/logger.js b/lib/logger.js index 08ef87a..07f42ba 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -79,9 +79,9 @@ function timeSheetRecordsPrinter(records) { var commentBugRE = new RegExp("[bB]ug\\s+([0-9]+)","g"); // sort the records into temporary array var tmpArr = []; - var outStr = '<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">' + + var outStr = '<!DOCTYPE html>' + "<html><head>\n"+ - "<meta http-equiv='Content-type' content='text/html;charset=utf-8'/>\n"+ + "<meta charset='utf-8'/>\n"+ "<title>Status report</title>\n</head>\n<body>\n" + "<h1>TimeSheet</h1>\n"; |