Skip to content
This repository has been archived by the owner on Jun 3, 2022. It is now read-only.

Commit

Permalink
Release ccfd-api-php 1.49
Browse files Browse the repository at this point in the history
  • Loading branch information
borisz committed Apr 17, 2012
1 parent 01e7b62 commit 0027f35
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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 )

Expand Down
4 changes: 2 additions & 2 deletions CreditCardFraudDetection.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion Example.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 0027f35

Please sign in to comment.