Skip to content

Commit

Permalink
Merge pull request #939 from wrongecho/rec-invoice-var-name-fix
Browse files Browse the repository at this point in the history
Client recurring invoice num fix
  • Loading branch information
johnnyq authored Apr 12, 2024
2 parents 453453c + bdd75f9 commit 65a3a03
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client_side_nav.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- Main Sidebar Container -->
<aside class="main-sidebar sidebar-dark-<?php echo nullable_htmlentities($config_theme); ?> d-print-none">

<a class="brand-link pb-1 mt-1" href="clients.php">
<a class="brand-link pb-1 mt-1" href="clients.php">
<p class="h5"><i class="nav-icon fas fa-arrow-left ml-3 mr-2"></i> Back | <strong><?php echo shortenClient($client_name); ?></strong></p>
</a>

Expand Down Expand Up @@ -46,7 +46,7 @@
</a>
</li>


<?php if ($config_module_enable_ticketing == 1) { ?>
<li class="nav-header mt-3">SUPPORT</li>

Expand Down Expand Up @@ -255,8 +255,8 @@
<p>
Recurring
<?php
if ($num_recurring_invoices > 0) { ?>
<span class="right badge"><?php echo $num_recurring_invoices; ?></span>
if ($num_recurring > 0) { ?>
<span class="right badge"><?php echo $num_recurring; ?></span>
<?php } ?>
</p>
</a>
Expand Down Expand Up @@ -353,7 +353,7 @@
<!-- /.sidebar-menu -->

<div class="mb-3"></div>

</div>
<!-- /.sidebar -->
</aside>

0 comments on commit 65a3a03

Please sign in to comment.