From 89dfd94dd3e3f373625ae0f6f0d1766f71ac56df Mon Sep 17 00:00:00 2001 From: Sophie Meynieux Date: Tue, 4 Dec 2012 16:25:59 +0100 Subject: [PATCH] Bug 9208 : Add utf-8 encoding when generating pdf letters from html files. Signed-off-by: Kyle M Hall --- misc/cronjobs/printoverdues.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/misc/cronjobs/printoverdues.sh b/misc/cronjobs/printoverdues.sh index 51bb30f..36aca96 100755 --- a/misc/cronjobs/printoverdues.sh +++ b/misc/cronjobs/printoverdues.sh @@ -39,7 +39,7 @@ then fi for i in $1/*.html do - xhtml2pdf $optpisa $i; + xhtml2pdf --encoding utf-8 $optpisa $i; done if [[ -n $optprinter ]] -- 1.7.2.5