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

Commit 0027f35

Browse files
committed
Release ccfd-api-php 1.49
1 parent 01e7b62 commit 0027f35

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
Revision history for MaxMind CreditCardFraudDetection PHP API
2+
1.49 Februar 19th 2009
3+
- Add minfraud3.maxmind.com to the server list ( Boris Zentner )
24
1.48 October 3th 2008
35
- Add new optional fields user_agent and accept_language for CCFD requests ( Boris Zentner )
46

CreditCardFraudDetection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ function CreditCardFraudDetection() {
6262
//set the url of the web service
6363
$this->url = "app/ccv2r";
6464
$this->check_field = "score";
65-
$this->server = array("minfraud1.maxmind.com", "minfraud2.maxmind.com");
65+
$this->server = array("minfraud3.maxmind.com", "minfraud1.maxmind.com", "minfraud2.maxmind.com");
6666
$this->numservers = count($this->server);
67-
$this->API_VERSION = 'PHP/1.48';
67+
$this->API_VERSION = 'PHP/1.49';
6868
}
6969

7070
function filter_field($key, $value) {

Example.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
// how many seconds to cache the ip addresses
6060
// $ccfs->wsIpaddrRefreshTimeout = 3600*5;
6161

62-
// file to store the ip address for minfraud1.maxmind.com and minfraud2.maxmind.com
62+
// file to store the ip address for minfraud3.maxmind.com, minfraud1.maxmind.com and minfraud2.maxmind.com
6363
// $ccfs->wsIpaddrCacheFile = "/tmp/maxmind.ws.cache";
6464

6565
// if useDNS is 1 then use DNS, otherwise use ip addresses directly

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Maxmind Credit Card Fraud Detection Service PHP API Version 1.48
1+
Maxmind Credit Card Fraud Detection Service PHP API Version 1.49
22

33
===============
44
Example scripts

0 commit comments

Comments
 (0)