WordPress Backup and Migrate Plugin – Backup Guard - Version 1.5.5

Version Description

  • Banner improvement
Download this release

Release Info

Developer BackupGuard
Plugin Icon 128x128 WordPress Backup and Migrate Plugin – Backup Guard
Version 1.5.5
Comparing to
See all releases

Code changes from version 1.5.4 to 1.5.5

README.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://backup-guard.com/products/backup-wordpress
6
  Tags: backup, wordpress backup plugin, backup plugin, database backup, migrate, back up
7
  Requires at least: 3.8
8
  Tested up to: 5.6
9
- Stable tag: 1.5.4
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -167,6 +167,10 @@ When you are facing an issue of any kind with any of our products, the first thi
167
  6. Site backup customization
168
 
169
  == Changelog ==
 
 
 
 
170
  = 1.5.4 =
171
  * Improvement of restore, respective alert massage added when users try to make a restore
172
  * Improvement of Cloud section, before trying to upload to cloud connection is checked
6
  Tags: backup, wordpress backup plugin, backup plugin, database backup, migrate, back up
7
  Requires at least: 3.8
8
  Tested up to: 5.6
9
+ Stable tag: 1.5.5
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
167
  6. Site backup customization
168
 
169
  == Changelog ==
170
+
171
+ = 1.5.5 =
172
+ * Banner improvement
173
+
174
  = 1.5.4 =
175
  * Improvement of restore, respective alert massage added when users try to make a restore
176
  * Improvement of Cloud section, before trying to upload to cloud connection is checked
backup.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Backup
5
  * Plugin URI: https://backup-guard.com/products/backup-wordpress
6
  * Description: Backup Guard is the most complete site backup and restore plugin. We offer the easiest way to backup, restore or migrate your site. You can backup your files, database or both.
7
- * Version: 1.5.4
8
  * Author: BackupGuard
9
  * Author URI: https://backup-guard.com/products/backup-wordpress
10
  * License: GPL-2.0+
@@ -16,7 +16,7 @@ if (function_exists('activate_backup_guard')) {
16
  }
17
 
18
  if (!defined('SG_BACKUP_GUARD_VERSION')) {
19
- define('SG_BACKUP_GUARD_VERSION', '1.5.4');
20
  }
21
 
22
  if (!defined('SG_BACKUP_GUARD_MAIN_FILE')) {
4
  * Plugin Name: Backup
5
  * Plugin URI: https://backup-guard.com/products/backup-wordpress
6
  * Description: Backup Guard is the most complete site backup and restore plugin. We offer the easiest way to backup, restore or migrate your site. You can backup your files, database or both.
7
+ * Version: 1.5.5
8
  * Author: BackupGuard
9
  * Author URI: https://backup-guard.com/products/backup-wordpress
10
  * License: GPL-2.0+
16
  }
17
 
18
  if (!defined('SG_BACKUP_GUARD_VERSION')) {
19
+ define('SG_BACKUP_GUARD_VERSION', '1.5.5');
20
  }
21
 
22
  if (!defined('SG_BACKUP_GUARD_MAIN_FILE')) {
public/include/header.php CHANGED
@@ -3,13 +3,7 @@
3
  $isAdsEnabled = SGConfig::get('SG_DISABLE_ADS');
4
  $closeFreeBanner = SGConfig::get('SG_CLOSE_FREE_BANNER');
5
 
6
- $isPlatinumPackage = false;
7
- $pluginCapabilities = backupGuardGetCapabilities();
8
- if ($pluginCapabilities == BACKUP_GUARD_CAPABILITIES_PLATINUM) {
9
- $isPlatinumPackage = true;
10
- }
11
-
12
- if (!$isPlatinumPackage && !$isAdsEnabled && !$closeFreeBanner) {
13
  include_once(SG_NOTICE_TEMPLATES_PATH.'banner.php');
14
  }
15
 
3
  $isAdsEnabled = SGConfig::get('SG_DISABLE_ADS');
4
  $closeFreeBanner = SGConfig::get('SG_CLOSE_FREE_BANNER');
5
 
6
+ if (!$isAdsEnabled && !$closeFreeBanner) {
 
 
 
 
 
 
7
  include_once(SG_NOTICE_TEMPLATES_PATH.'banner.php');
8
  }
9
 
public/templates/notices/banner.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  $banner = backupGuardGetBanner(SG_ENV_WORDPRESS, "plugin", SG_PRODUCT_IDENTIFIER);
3
 
4
-
5
  $buttonText = "$19.95* | BUY NOW";
6
  $banerText = "You're running the Free version of the plugin.<br>If you're interested in website migration, backup to cloud, scheduled backups, mail notifications, then don't wait to buy BackupGuard Pro <b>NOW!</b>";
7
 
1
  <?php
2
  $banner = backupGuardGetBanner(SG_ENV_WORDPRESS, "plugin", SG_PRODUCT_IDENTIFIER);
3
 
 
4
  $buttonText = "$19.95* | BUY NOW";
5
  $banerText = "You're running the Free version of the plugin.<br>If you're interested in website migration, backup to cloud, scheduled backups, mail notifications, then don't wait to buy BackupGuard Pro <b>NOW!</b>";
6