mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 19:04:52 +00:00
Partial Fix to # Invoice footer displaying everything on one line despite the fact that it is entered with a new lines under settings, Partially Fixes #300. Fixes the HTML Part but not the PDF part yet
This commit is contained in:
@@ -284,7 +284,7 @@ if(isset($_GET['invoice_id'], $_GET['url_key'])){
|
||||
|
||||
<hr class="mt-5">
|
||||
|
||||
<center><?php echo $config_invoice_footer; ?></center>
|
||||
<center style="white-space:pre-line"><?php echo $config_invoice_footer; ?></center>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -239,7 +239,7 @@ if(isset($_GET['quote_id'], $_GET['url_key'])){
|
||||
|
||||
<hr class="mt-5">
|
||||
|
||||
<center><?php echo $config_quote_footer; ?></center>
|
||||
<center style="white-space:pre-line"><?php echo $config_quote_footer; ?></center>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -379,7 +379,7 @@ if(isset($_GET['invoice_id'])){
|
||||
|
||||
<hr class="d-none d-print-block mt-5">
|
||||
|
||||
<center class="d-none d-print-block"><?php echo $config_invoice_footer; ?></center>
|
||||
<center class="d-none d-print-block" style="white-space:pre-line"><?php echo $config_invoice_footer; ?></center>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -339,7 +339,7 @@ if(isset($_GET['quote_id'])){
|
||||
|
||||
<hr class="d-none d-print-block mt-5">
|
||||
|
||||
<center class="d-none d-print-block"><?php echo $config_quote_footer; ?></center>
|
||||
<center class="d-none d-print-block" style="white-space:pre-line"><?php echo $config_quote_footer; ?></center>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user