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