Fixed Blank Miles Driven on Dashboard, now displays 0.00

This commit is contained in:
johnny@pittpc.com
2020-09-25 15:50:47 -04:00
parent 180bdafafa
commit e61c96cf9c

View File

@@ -149,7 +149,7 @@ $total_recurring_invoice_amount = $row['total_recurring_invoice_amount'];
<!-- small box --> <!-- small box -->
<a class="small-box bg-info" href="trips.php?dtf=<?php echo $year; ?>-01-01&dtt=<?php echo $year; ?>-12-31"> <a class="small-box bg-info" href="trips.php?dtf=<?php echo $year; ?>-01-01&dtt=<?php echo $year; ?>-12-31">
<div class="inner"> <div class="inner">
<h3><?php echo $total_miles; ?></h3> <h3><?php echo number_format($total_miles,2); ?></h3>
<p>Miles Driven</p> <p>Miles Driven</p>
</div> </div>
<div class="icon"> <div class="icon">