diff --git a/src/report/business-reports/invoice.scm b/src/report/business-reports/invoice.scm index 8cde609e6c..a75c7fefb7 100644 --- a/src/report/business-reports/invoice.scm +++ b/src/report/business-reports/invoice.scm @@ -758,12 +758,15 @@ (let* ((term (gncInvoiceGetTerms invoice)) (terms (gncBillTermGetDescription term))) (if (and terms (> (string-length terms) 0)) - (gnc:html-document-add-object! - document - (gnc:make-html-text - (string-append - (_ "Terms") ": " - (string-expand terms #\newline "
"))))))) + (begin + (gnc:html-document-add-object! + document + (gnc:make-html-text + (string-append + (_ "Terms") ": " + (string-expand terms #\newline "
")))) + (make-break! document)) + ))) ;(make-break! document)