Convert CSS to nl2br() functions where nessesessaery to interept new lines into html code, Tidy Code remove depreciated <center> Tags

This commit is contained in:
johnnyq
2023-04-05 15:20:07 -04:00
parent 74768d6801
commit a5d9bd7abe
6 changed files with 16 additions and 20 deletions

View File

@@ -232,7 +232,7 @@ if (isset($_GET['recurring_id'])) {
</div>
</td>
<td><?php echo $item_name; ?></td>
<td><div style="white-space:pre-line"><?php echo $item_description; ?></div></td>
<td><?php echo nl2br($item_description; ?></td>
<td class="text-center"><?php echo $item_quantity; ?></td>
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $item_price, $recurring_currency_code); ?></td>
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $item_tax, $recurring_currency_code); ?></td>
@@ -299,7 +299,7 @@ if (isset($_GET['recurring_id'])) {
</div>
</div>
<div class="card-body">
<div style="white-space:pre-line"><?php echo $recurring_note; ?></div>
<?php echo nl2br($recurring_note); ?>
</div>
</div>
</div>