Changeset 2063252
- Timestamp:
- 04/04/2019 08:25:38 PM (7 years ago)
- Location:
- vaultpress/trunk
- Files:
-
- 3 edited
-
cron-tasks.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vaultpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vaultpress/trunk/cron-tasks.php
r2061705 r2063252 104 104 105 105 function _scan_batch() { 106 $paths = (array)get_option( '_vp_current_scan' );106 $paths = get_option( '_vp_current_scan' ); 107 107 if ( empty( $paths ) || $this->_scan_clean_up( $paths ) ) 108 108 return false; 109 109 110 if ( ! is_array( $paths ) ) { 111 return false; 112 } 113 110 114 reset( $paths ); 111 list( $type, $current ) = current( $paths ); 115 116 $type = null; 117 $current = false; 118 foreach ( $paths as $type => $current ) { 119 break; 120 } 121 112 122 if ( !is_object( $current ) || empty( $current->last_dir ) ) 113 123 return $this->_scan_clean_up( $paths, $type ); -
vaultpress/trunk/readme.txt
r2061705 r2063252 4 4 Requires at least: 3.2 5 5 Tested up to: 5.1.1 6 Stable tag: 1.9. 96 Stable tag: 1.9.10 7 7 License: GPLv2 8 8 … … 48 48 49 49 == Changelog == 50 = 1.9.10 - 4 April 2019 = 51 * Bugfix: Fix a PHP fatal error caused by passing an object to the current() function. 52 50 53 = 1.9.9 - 28 March 2019 = 51 54 * PHP 7.2.0 compatibility fix. -
vaultpress/trunk/vaultpress.php
r2061705 r2063252 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. 96 * Version: 1.9.10 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. 9';21 var $plugin_version = '1.9.10'; 22 22 23 23 function __construct() {
Note: See TracChangeset
for help on using the changeset viewer.