Fix missing colons

This commit is contained in:
Benjamin Yule Bädorf 2024-04-06 02:40:47 +02:00
parent da49f15b23
commit 9884f5d017
Signed by untrusted user: b12f
GPG key ID: 729956E1124F8F26

View file

@ -364,7 +364,7 @@ footer .notes {
</table>
</main>
<?php if ($isPaid : ?>
<?php if ($isPaid): ?>
<watermarktext content="<?php _trans('paid'); ?>" alpha="0.3" />
<?php endif; ?>
@ -376,7 +376,7 @@ footer .notes {
</div>
<?php endif; ?>
<?php if (!$isPaid : ?>
<?php if (!$isPaid): ?>
<p>
Bitte überweisen Sie den Rechnungsbetrag innerhalb von <?php echo (-1 * $invoice->days_overdue); ?> Tagen auf untenstehendes Konto:<br />
Inhaber: <?php echo $invoice->user_name; ?><br />
@ -393,7 +393,5 @@ footer .notes {
</p>
</footer>
<pre><?php print_r($invoice); ?></pre>
</body>
</html>