Plugin Directory

Changeset 1930233

Timestamp:
08/25/2018 04:19:28 PM (6 years ago)
Author:
rdcoll
Message:

Limit _vp_ai_ping_% entries to improve stability when a site gets disconnected from VaultPress.com

Location:
vaultpress/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vaultpress/trunk/readme.txt

    r1814337 r1930233  
    44Requires at least: 3.2
    55Tested up to: 4.9
    6 Stable tag: 1.9.5
     6Stable tag: 1.9.
    77License: GPLv2
    88
     
    4646
    4747Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
     48
     49
     50
     51
    4852
    4953== Changelog ==
  • vaultpress/trunk/vaultpress.php

    r1814337 r1930233  
    44 * Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
    55 * 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&amp;utm_medium=plugin-description&amp;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&amp;utm_medium=plugin-description&amp;utm_campaign=1.0" rel="nofollow">Need some help?</a>
    6  * Version: 1.9.5
     6 * Version: 1.9.
    77 * Author: Automattic
    88 * Author URI: http://vaultpress.com/?utm_source=author-uri&amp;utm_medium=plugin-description&amp;utm_campaign=1.0
     
    1919    var $auto_register_option = 'vaultpress_auto_register';
    2020    var $db_version           = 4;
    21     var $plugin_version       = '1.9.5';
     21    var $plugin_version       = '1.9.';
    2222
    2323    function __construct() {
     
    953953    function ai_ping_next() {
    954954        global $wpdb;
     955
     956
     957
     958
     959
    955960        $name = "_vp_ai_ping";
    956961        $wpdb->query( $wpdb->prepare( "DELETE FROM `$wpdb->options` WHERE `option_name` = %s;", $name ) );
     
    963968
    964969    function ai_ping_insert( $value ) {
     970
     971
     972
     973
    965974        $new_id = $this->ai_ping_next();
     975
    966976        if ( !$new_id )
    967977            return false;
Note: See TracChangeset for help on using the changeset viewer.