Closed theozsnowman closed 1 year ago
error in the latest release on the bpay_mgr_hooks.php file
line 237
$sql = "Selectuseridfromtblinvoiceswhereid= ".$var['invoiceid']."'";
$sql = "Select
from
where
= ".$var['invoiceid']."'";
should be
$sql = "Selectuseridfromtblinvoiceswhereid= ".$var['invoiceid']."";
= ".$var['invoiceid']."";
Many thanks. I've modified this in the upcoming v2.2.1 release.
The release is delayed as I'm hopeful to resolve the cron issue.
error in the latest release on the bpay_mgr_hooks.php file
line 237
$sql = "Select
useridfrom
tblinvoiceswhere
id= ".$var['invoiceid']."'";
should be
$sql = "Select
useridfrom
tblinvoiceswhere
id= ".$var['invoiceid']."";