mirror of https://github.com/itflow-org/itflow
Fix issue with cron not sending recurring emails due to a misspelling
This commit is contained in:
parent
5114c1acc9
commit
45b686dafc
2
cron.php
2
cron.php
|
|
@ -428,7 +428,7 @@ while ($row = mysqli_fetch_array($sql_companies)) {
|
|||
$category_id = intval($row['recurring_category_id']);
|
||||
$client_id = intval($row['recurring_client_id']);
|
||||
$client_name = sanitizeInput($row['client_name']); //Escape SQL just in case a name is like Safran's etc
|
||||
$client_net_terms = intvak($row['client_net_terms']);
|
||||
$client_net_terms = intval($row['client_net_terms']);
|
||||
|
||||
|
||||
//Get the last Invoice Number and add 1 for the new invoice number
|
||||
|
|
|
|||
Loading…
Reference in New Issue