That's weird. I still cannot trigger the checking. Am I missing something?   
				
			 
				AbanteCart v1.4.3 is released.

This 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 Menu 
				Quote<?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!');
}
}
}
?>