Update pages/callback.php

Signed-off-by: kevinowino869 <kevinowino869@www.codelab.nestict.africa>
This commit is contained in:
kevinowino869 2025-03-30 13:38:19 +02:00
parent 818a1957be
commit e0b07cbfd7

View File

@ -55,7 +55,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && empty($_GET)) {
}
}
// Find invoice linked to this CheckoutRequestID (youd need to store this mapping)
// Find invoice linked to this CheckoutRequestID (you will need to store this mapping)
$sql = "SELECT fk_invoice FROM " . MAIN_DB_PREFIX . "dolipesa_transactions ";
$sql .= "WHERE checkout_request_id = '" . $db->escape($checkoutRequestID) . "'";
$resql = $db->query($sql);