mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Mysql escaped notes and itew name and descriptions when you copy an invoice to a recurring invoice as well as fix the cron.php when it converts Recurring into regular invoices
This commit is contained in:
2
post.php
2
post.php
@@ -1348,7 +1348,7 @@ if(isset($_POST['add_invoice_recurring'])){
|
||||
$row = mysqli_fetch_array($sql);
|
||||
$invoice_date = $row['invoice_date'];
|
||||
$invoice_amount = $row['invoice_amount'];
|
||||
$invoice_note = $row['invoice_note'];
|
||||
$invoice_note = mysqli_real_escape_string($mysqli,$row['invoice_note']); //SQL Escape in case notes have , them
|
||||
$client_id = $row['client_id'];
|
||||
$category_id = $row['category_id'];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user