That's weird. I still cannot trigger the checking. Am I missing something?

AbanteCart v1.4.2 is released.
Do you like AbanteCart? Please rate AbanteCart or share your experience with other eCommerce entrepreneurs. Go to Softaculous rating page to add your rating or write a review
MenuThis section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote<?php
if (!defined('DIR_CORE')) {
header('Location: static_pages/');
}
class ControllerResponsesExtensionAntiFraudster extends AController {
public function main() {}
public function onControllerPagesCheckoutSuccess_InitData() {
$that->loadModel('checkout/order');
$order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);
if($order_info['payment_country'] == 'NG') {
die('Fraud detected!');
}
}
}
?>