diff --git a/pages/callback.php b/pages/callback.php index afd89ef..945d0a2 100644 --- a/pages/callback.php +++ b/pages/callback.php @@ -55,7 +55,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && empty($_GET)) { } } - // Find invoice linked to this CheckoutRequestID (you’d 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);