From 5ad018c10a4b77416ebceb5f678b473a6a7753ce Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 3 Oct 2010 13:56:02 +0200 Subject: [PATCH] Undo inappropriate quote substitution in generated HTML. Commit 173d1687aea88e0e5e1b1d8615ed68ebefb15d08 erroneously substituted these quotes in html fragments. --- src/output/html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output/html.c b/src/output/html.c index 8b062134..4452e40b 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -112,7 +112,7 @@ html_create (const char *file_name, enum settings_output_devices device_type, fputs ("\n", html->file); fputs ("\n", html->file); print_title_tag (html->file, "TITLE", _("PSPP Output")); - fprintf (html->file, "\n", version); + fprintf (html->file, "\n", version); fputs ("\n", html->file); fputs ("chart_cnt++); if (file_name != NULL) { - fprintf (html->file, "", file_name); + fprintf (html->file, "", file_name); free (file_name); } } -- 2.30.2