diff --git a/Changes b/Changes index ef46ff2..7f7a676 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,6 @@ Revision history for MaxMind CreditCardFraudDetection PHP API +1.49 Februar 19th 2009 + - Add minfraud3.maxmind.com to the server list ( Boris Zentner ) 1.48 October 3th 2008 - Add new optional fields user_agent and accept_language for CCFD requests ( Boris Zentner ) diff --git a/CreditCardFraudDetection.php b/CreditCardFraudDetection.php index 8c670ef..7a3538c 100644 --- a/CreditCardFraudDetection.php +++ b/CreditCardFraudDetection.php @@ -62,9 +62,9 @@ function CreditCardFraudDetection() { //set the url of the web service $this->url = "app/ccv2r"; $this->check_field = "score"; - $this->server = array("minfraud1.maxmind.com", "minfraud2.maxmind.com"); + $this->server = array("minfraud3.maxmind.com", "minfraud1.maxmind.com", "minfraud2.maxmind.com"); $this->numservers = count($this->server); - $this->API_VERSION = 'PHP/1.48'; + $this->API_VERSION = 'PHP/1.49'; } function filter_field($key, $value) { diff --git a/Example.php b/Example.php index 9ca9539..afcd2c0 100644 --- a/Example.php +++ b/Example.php @@ -59,7 +59,7 @@ // how many seconds to cache the ip addresses // $ccfs->wsIpaddrRefreshTimeout = 3600*5; -// file to store the ip address for minfraud1.maxmind.com and minfraud2.maxmind.com +// file to store the ip address for minfraud3.maxmind.com, minfraud1.maxmind.com and minfraud2.maxmind.com // $ccfs->wsIpaddrCacheFile = "/tmp/maxmind.ws.cache"; // if useDNS is 1 then use DNS, otherwise use ip addresses directly diff --git a/README b/README index 93e39ec..bbe5366 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Maxmind Credit Card Fraud Detection Service PHP API Version 1.48 +Maxmind Credit Card Fraud Detection Service PHP API Version 1.49 =============== Example scripts