diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-17 00:42:26 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-03-17 00:42:26 +0100 |
commit | 426d8250749aa21c1b5faf2d0ba08253c06b6718 (patch) | |
tree | 7f5f18806a967d440bec0e8e72ade4d33d1258b2 /lib | |
parent | 23cd6fe15efcec583429a2650fd2ffc4a2d8049b (diff) | |
parent | 1e52f19429f906ab8ca6896aef99681dd648db7c (diff) | |
download | bugzilla-triage-426d8250749aa21c1b5faf2d0ba08253c06b6718.tar.gz |
Merge branch 'logging' into next
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"; |