Changeset 1872821
- Timestamp:
- 05/11/2018 05:00:15 PM (8 years ago)
- Location:
- fraudgrade/trunk
- Files:
-
- 3 edited
-
fraudgrade.php (modified) (2 diffs)
-
libraries/global.php (modified) (6 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fraudgrade/trunk/fraudgrade.php
r1806334 r1872821 15 15 * Plugin URI: 16 16 * Description: This plugin integrates directly with FraudGrade's Fraud Prevention and Detection Services to mitigate most types of Online Fraud. To get started: activate the FraudGrade plugin and then browse to the Settings page to setup your integration. 17 * Version: 1.0.017 * Version: 2.0.0 18 18 * Author: FraudGrade 19 19 * Author URI: … … 34 34 * @package IP_Check 35 35 * @author FraudGrade 36 * @version 1.0.036 * @version 2.0.0 37 37 */ 38 38 class ipvl_FraudGrade { -
fraudgrade/trunk/libraries/global.php
r1870953 r1872821 4 4 * who come from Proxy's, TOR, Datacenters, or VPN networks. 5 5 * 6 * @since 1.0.06 * @since 2.0.0 7 7 * 8 8 * @package FraudGrade 9 9 * @subpackage FraudGrade/globals 10 10 * @author FraudGrade 11 * @version 1.0.011 * @version 2.0.0 12 12 */ 13 13 … … 25 25 * @subpackage FraudGrade/globals 26 26 * @author FraudGrade 27 * @version 1.0.027 * @version 2.0.0 28 28 */ 29 29 class ipvl_FraudGrade_Globals { … … 348 348 { 349 349 // Data is not correct format 350 if ( ! is_object( $data ) OR ! isset( $data->ip Review) ) return FALSE;350 if ( ! is_object( $data ) OR ! isset( $data->ip ) ) return FALSE; 351 351 // Cache is disabled do not save data 352 352 if ( (int) ipvl_FraudGrade::get_settings()['ipc_cache_time'] === 0) return FALSE; 353 353 global $user_ID, $wpdb; 354 354 355 $data = $data->ipReview;356 355 $user_ID = (int) $user_ID; 357 356 if ( 0 === $user_ID ) … … 407 406 '_isBlacklisted' => (int) $data->isBlacklisted, 408 407 '_isBlacklistedDetails' => (string) $data->isBlacklistedDetails, 409 '_ipGrade' => (string) $data->ipGrade,410 '_ipGradeDetails' => (string) $data->ipGradeDetails,408 // '_ipGrade' => (string) $data->ipGrade, 409 // '_ipGradeDetails' => (string) $data->ipGradeDetails, 411 410 '_proxyDetected' => (int) $data->proxyDetected, 412 411 '_vpnDetected' => (int) $data->vpnDetected, … … 422 421 '_country' => $data->country, 423 422 '_countryIsoCode' => $data->countryIsoCode, 424 '_accuracyRadius' => $data->accuracyRadius,423 // '_accuracyRadius' => $data->accuracyRadius, 425 424 '_isp' => $data->isp, 426 425 '_connectionType' => $data->connectionType, … … 430 429 ), 431 430 ); 431 432 433 // ipvl_dump( $data ); 432 434 global $wp_rewrite; 433 435 $wp_rewrite = new wp_rewrite; -
fraudgrade/trunk/readme.txt
r1806451 r1872821 5 5 Tested up to: 4.9.1 6 6 Requires PHP: 5.6.3 7 Stable tag: 1.0.07 Stable tag: 2.0.0 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 31 31 v1.0.0 - Initial Release. 32 32 v1.5.0 - Removed Highcharts in favor of Flot charting libray, added Search Engine whitelisting and ability to whitelist specific pages. 33 v2.0.0 - Update IP Review API endpoint 33 34 34 35 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.