gnucash maint: Fix report html header
Geert Janssens
gjanssens at code.gnucash.org
Mon Nov 28 04:33:09 EST 2016
Updated via https://github.com/Gnucash/gnucash/commit/e38fd5b5 (commit)
from https://github.com/Gnucash/gnucash/commit/bc33d564 (commit)
commit e38fd5b5e5fc219cf2634382badf56c8327ccf13
Author: Geert Janssens <janssens-geert at telenet.be>
Date: Mon Nov 28 10:33:56 2016 +0100
Fix report html header
We lost a required escaped quote in commit 4a60e4906 'Fix type in HTML header.'
diff --git a/src/report/report-system/html-document.scm b/src/report/report-system/html-document.scm
index cb05a1a..0afb6a3 100644
--- a/src/report/report-system/html-document.scm
+++ b/src/report/report-system/html-document.scm
@@ -159,7 +159,7 @@
;;./share/gnucash/scm/gnucash/report/balsheet-eg.eguile.scm:<html>
;; Validate against HTML4 Transitional:
- (push "<!DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN\" \n\"http://www.w3.org/TR/html4/loose.dtd\">")
+ (push "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \n\"http://www.w3.org/TR/html4/loose.dtd\">")
(push "<head>\n")
(push "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n")
(if css?
Summary of changes:
src/report/report-system/html-document.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the gnucash-changes
mailing list