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:
johnnyq 2022-01-19 12:34:40 -05:00
parent a5b199a586
commit 9c7a87aa23
4 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>