From: Jonathan Druart <jonathan.dru...@biblibre.com> Signed-off-by: Robin Sheat <ro...@catalyst.net.nz>
Note: this script really needs a rewrite, but this patch does fix up the things it's supposed to fix up. --- misc/cronjobs/printoverdues.sh | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) diff --git a/misc/cronjobs/printoverdues.sh b/misc/cronjobs/printoverdues.sh index 99bb878..51bb30f 100755 --- a/misc/cronjobs/printoverdues.sh +++ b/misc/cronjobs/printoverdues.sh @@ -27,20 +27,24 @@ then fi if [[ -n $2 && -f $2 ]] then - set $optpisa "--css $2"; + optpisa="--css $2"; fi if [[ -n $3 ]] then - set $optprinter "-h $3"; + optprinter="-h $3"; fi if [[ -n $4 ]] then - set $optprinter "$optprinter -d $4"; + optprinter="$optprinter -d $4"; fi for i in $1/*.html do - xhtml2pdf $optpisa $i + xhtml2pdf $optpisa $i; done -lp $optprinter $1/*.pdf -tar cvfz $directory`date "+%Y%m%d"`.tar.gz $directory -rm -rf $directory + +if [[ -n $optprinter ]] +then + lp $optprinter $1/*.pdf; +fi + +tar cvfz $directory`date "+%Y%m%d"`.tar.gz $directory; -- 1.7.4.1 _______________________________________________ Koha-patches mailing list Koha-patches@lists.koha-community.org http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/