mirror of https://github.com/itflow-org/itflow
Set var recurring_total to start/default at 0 to prevent undefined errors
This commit is contained in:
parent
e1c70af1f5
commit
8482cf87fa
|
|
@ -22,7 +22,7 @@ $sql_clients = mysqli_query($mysqli,"SELECT * FROM clients WHERE company_id = $s
|
|||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$recurring_total = 0; // Default value
|
||||
$recurring_total = 0; // Default value: 0
|
||||
while ($row = mysqli_fetch_array($sql_clients)) {
|
||||
$client_id = $row['client_id'];
|
||||
$client_name = htmlentities($row['client_name']);
|
||||
|
|
|
|||
Loading…
Reference in New Issue