Version Description
- 8 May 2017 =
- Remove outdated free trial link
Download this release
Release Info
| Developer | benedictsinger |
| Plugin | |
| Version | 1.8.9 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.8 to 1.8.9
- readme.txt +4 -1
- vaultpress.php +3 -18
readme.txt
CHANGED
|
@@ -3,7 +3,7 @@ Contributors: automattic, apokalyptik, briancolinger, josephscott, shaunandrews,
|
|
| 3 |
Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
|
| 4 |
Requires at least: 3.2
|
| 5 |
Tested up to: 4.7.2
|
| 6 |
-
Stable tag: 1.8.
|
| 7 |
License: GPLv2
|
| 8 |
|
| 9 |
VaultPress is a subscription service offering real-time backup, automated security scanning, and support from WordPress experts.
|
|
@@ -47,6 +47,9 @@ A VaultPress subscription is for a single WordPress site. You can purchase addit
|
|
| 47 |
Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
|
| 48 |
|
| 49 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
| 50 |
= 1.8.7 - 6 March 2017 =
|
| 51 |
* Security fix for https://wpvulndb.com/vulnerabilities/8745
|
| 52 |
|
| 3 |
Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
|
| 4 |
Requires at least: 3.2
|
| 5 |
Tested up to: 4.7.2
|
| 6 |
+
Stable tag: 1.8.9
|
| 7 |
License: GPLv2
|
| 8 |
|
| 9 |
VaultPress is a subscription service offering real-time backup, automated security scanning, and support from WordPress experts.
|
| 47 |
Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
|
| 48 |
|
| 49 |
== Changelog ==
|
| 50 |
+
= 1.8.9 - 8 May 2017 =
|
| 51 |
+
* Remove outdated free trial link
|
| 52 |
+
|
| 53 |
= 1.8.7 - 6 March 2017 =
|
| 54 |
* Security fix for https://wpvulndb.com/vulnerabilities/8745
|
| 55 |
|
vaultpress.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: VaultPress
|
| 4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
| 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.8.
|
| 7 |
* Author: Automattic
|
| 8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
| 9 |
* License: GPL2+
|
|
@@ -18,7 +18,7 @@ class VaultPress {
|
|
| 18 |
var $option_name = 'vaultpress';
|
| 19 |
var $auto_register_option = 'vaultpress_auto_register';
|
| 20 |
var $db_version = 4;
|
| 21 |
-
var $plugin_version = '1.8.
|
| 22 |
|
| 23 |
function __construct() {
|
| 24 |
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
|
@@ -511,22 +511,7 @@ class VaultPress {
|
|
| 511 |
<h2><?php _e( 'The VaultPress plugin <strong>requires a subscription</strong>.', 'vaultpress' ); ?></h2>
|
| 512 |
<p class="vp_card-description"><?php _e( 'Get realtime backups, automated security scanning, and support from WordPress experts.', 'vaultpress' ); ?></p>
|
| 513 |
<a class="vp_button-mega" href="https://vaultpress.com/plugin/?utm_source=plugin-unregistered&utm_medium=view-plans-and-pricing&utm_campaign=1.0-plugin"><?php _e( 'View plans and pricing »', 'vaultpress' ); ?></a>
|
| 514 |
-
|
| 515 |
-
|
| 516 |
-
<?php if ( $jetpack_available ): ?>
|
| 517 |
-
<div class="vp_card half connect-via-jetpack">
|
| 518 |
-
<h2><?php _e( 'Instantly connect through Jetpack', 'vaultpress' ); ?></h2>
|
| 519 |
-
<p class="vp_card-description"><?php printf( __( 'Start a <strong>free</strong> five-day trial of VaultPress Lite. Registering will create a VaultPress account for %s.', 'vaultpress' ), $jetpack_email); ?></p>
|
| 520 |
-
<form method="post" action="">
|
| 521 |
-
<fieldset>
|
| 522 |
-
<button class="vp_button-mega"><?php _e( 'Start free trial', 'vaultpress' ); ?></button>
|
| 523 |
-
<input type="hidden" name="action" value="register" />
|
| 524 |
-
<input type="hidden" name="key_source" value="jetpack" />
|
| 525 |
-
<?php wp_nonce_field( 'vaultpress_register' ); ?>
|
| 526 |
-
</fieldset>
|
| 527 |
-
</form>
|
| 528 |
-
</div>
|
| 529 |
-
<?php endif ?>
|
| 530 |
|
| 531 |
<div class="vp_card half">
|
| 532 |
<h2><?php _e( 'Already have a VaultPress account?', 'vaultpress' ); ?></h2>
|
| 3 |
* Plugin Name: VaultPress
|
| 4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
| 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.8.9
|
| 7 |
* Author: Automattic
|
| 8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
| 9 |
* License: GPL2+
|
| 18 |
var $option_name = 'vaultpress';
|
| 19 |
var $auto_register_option = 'vaultpress_auto_register';
|
| 20 |
var $db_version = 4;
|
| 21 |
+
var $plugin_version = '1.8.9';
|
| 22 |
|
| 23 |
function __construct() {
|
| 24 |
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
| 511 |
<h2><?php _e( 'The VaultPress plugin <strong>requires a subscription</strong>.', 'vaultpress' ); ?></h2>
|
| 512 |
<p class="vp_card-description"><?php _e( 'Get realtime backups, automated security scanning, and support from WordPress experts.', 'vaultpress' ); ?></p>
|
| 513 |
<a class="vp_button-mega" href="https://vaultpress.com/plugin/?utm_source=plugin-unregistered&utm_medium=view-plans-and-pricing&utm_campaign=1.0-plugin"><?php _e( 'View plans and pricing »', 'vaultpress' ); ?></a>
|
| 514 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 515 |
|
| 516 |
<div class="vp_card half">
|
| 517 |
<h2><?php _e( 'Already have a VaultPress account?', 'vaultpress' ); ?></h2>
|
