Changeset 1930233
- Timestamp:
- 08/25/2018 04:19:28 PM (7 years ago)
- Location:
- vaultpress/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
vaultpress.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vaultpress/trunk/readme.txt
r1814337 r1930233 4 4 Requires at least: 3.2 5 5 Tested up to: 4.9 6 Stable tag: 1.9. 56 Stable tag: 1.9.6 7 7 License: GPLv2 8 8 … … 46 46 47 47 Yes, VaultPress supports Multisite installs. Each site will require its own subscription. 48 49 == Changelog == 50 = 1.9.6 - 17 August 2018 51 * Limit _vp_ai_ping_% entries to improve stability when a site gets disconnected from VaultPress.com 48 52 49 53 == Changelog == -
vaultpress/trunk/vaultpress.php
r1814337 r1930233 4 4 * Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0 5 5 * Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a> 6 * Version: 1.9. 56 * Version: 1.9.6 7 7 * Author: Automattic 8 8 * Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0 … … 19 19 var $auto_register_option = 'vaultpress_auto_register'; 20 20 var $db_version = 4; 21 var $plugin_version = '1.9. 5';21 var $plugin_version = '1.9.6'; 22 22 23 23 function __construct() { … … 953 953 function ai_ping_next() { 954 954 global $wpdb; 955 956 if ( absint( $this->ai_ping_count() ) >= 100 ) { 957 return false; 958 } 959 955 960 $name = "_vp_ai_ping"; 956 961 $wpdb->query( $wpdb->prepare( "DELETE FROM `$wpdb->options` WHERE `option_name` = %s;", $name ) ); … … 963 968 964 969 function ai_ping_insert( $value ) { 970 if ( absint( $this->ai_ping_count() ) >= 100 ) { 971 return false; 972 } 973 965 974 $new_id = $this->ai_ping_next(); 975 966 976 if ( !$new_id ) 967 977 return false;
Note: See TracChangeset
for help on using the changeset viewer.