invoice: improve transfer instructions
Change-Id: Ie0248807c93cf6eb31b12fa8c69eae7d4452d81d
diff --git a/invoice.php b/invoice.php
index 53bba3d..7537753 100644
--- a/invoice.php
+++ b/invoice.php
@@ -41,7 +41,7 @@
$invoice->addTitle("Payment Details");
- $invoice->addParagraph("Please transfer the total amount to the following account: ");
+ $invoice->addParagraph("Please transfer the total amount due to our account: ");
$invoice->addParagraph("Leibniz-Institute for the German Language
IBAN: DE70 6708 0050 0694 9411 00
@@ -53,7 +53,6 @@
//$invoice->setFooterNote("xx");
/* Render */
- $path = tempnam(sys_get_temp_dir(), 'prefix');
$ret = $invoice->render('example4.pdf', 'S'); /* I => Display on browser, D => Force Download, F => local path save, S => return document path */
return $ret;
}