BackUpWordPress - Version 3.2.2

Version Description

= 3.2.1 =

  • Important bug fixes. Please upgrade to this version to avoid incomplete or broken backups.

= 3.1.3 =

  • Fixes backwards compatibility for add-ons and avoids a Fatal Error. Please upgrade straight to this version before upgrading your add-ons.

= 3.0.4 =

  • Fixes a few minor bugs. Immediate update is recommended.

= 3.0.2 =

  • Important: we have dropped support for PHP 5.2, you will not be able to activate BackUpWordPress on a server running PHP versions older than PHP 5.3.29

= 3.0.1 =

  • This is a critical update. Fixes a bug in the core backup library. Please update immediately.
Download this release

Release Info

Developer pauldewouters
Plugin Icon 128x128 BackUpWordPress
Version 3.2.2
Comparing to
See all releases

Code changes from version 3.2.1 to 3.2.2

admin/actions.php CHANGED
@@ -85,7 +85,6 @@ function hmbkp_request_do_backup() {
85
 
86
  }
87
  add_action( 'wp_ajax_hmbkp_run_schedule', 'hmbkp_request_do_backup' );
88
- //add_action( 'admin_post_hmbkp_run_schedule', 'hmbkp_request_do_backup' );
89
 
90
  function hmbkp_run_schedule_async( $schedule_id ) {
91
 
85
 
86
  }
87
  add_action( 'wp_ajax_hmbkp_run_schedule', 'hmbkp_request_do_backup' );
 
88
 
89
  function hmbkp_run_schedule_async( $schedule_id ) {
90
 
admin/schedule-settings.php CHANGED
@@ -4,7 +4,7 @@ if ( HM\BackUpWordPress\Schedules::get_instance()->get_schedule( $schedule->get_
4
 
5
  <div class="hmbkp-schedule-actions row-actions">
6
 
7
- <a class="hmbkp-run" href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'hmbkp_run_schedule', 'hmbkp_schedule_id' => $schedule->get_id() ), admin_url( 'admin-post.php' ) ), 'hmbkp_run_schedule', 'hmbkp_run_schedule_nonce' ) ); ?>"><?php _e( 'Run now', 'backupwordpress' ); ?></a> |
8
 
9
  <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'hmbkp_edit_schedule', 'hmbkp_panel' => 'hmbkp_edit_schedule_settings', 'hmbkp_schedule_id' => $schedule->get_id() ), hmbkp_get_settings_url() ), 'hmbkp-edit-schedule' ); ?>"><?php _e( 'Settings', 'backupwordpress' ); ?></a> |
10
 
4
 
5
  <div class="hmbkp-schedule-actions row-actions">
6
 
7
+ <a class="hmbkp-run" href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'hmbkp_run_schedule', 'hmbkp_schedule_id' => $schedule->get_id() ), admin_url( 'admin-ajax.php' ) ), 'hmbkp_run_schedule', 'hmbkp_run_schedule_nonce' ) ); ?>"><?php _e( 'Run now', 'backupwordpress' ); ?></a> |
8
 
9
  <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'hmbkp_edit_schedule', 'hmbkp_panel' => 'hmbkp_edit_schedule_settings', 'hmbkp_schedule_id' => $schedule->get_id() ), hmbkp_get_settings_url() ), 'hmbkp-edit-schedule' ); ?>"><?php _e( 'Settings', 'backupwordpress' ); ?></a> |
10
 
backupwordpress.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: BackUpWordPress Backup Plugin
4
  Plugin URI: http://bwp.hmn.md/
5
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>. On multisite, you'll find me under the Network Settings menu.
6
- Version: 3.2.1
7
  Author: Human Made Limited
8
  Author URI: http://hmn.md/
9
  License: GPL-2.0+
3
  Plugin Name: BackUpWordPress Backup Plugin
4
  Plugin URI: http://bwp.hmn.md/
5
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>. On multisite, you'll find me under the Network Settings menu.
6
+ Version: 3.2.2
7
  Author: Human Made Limited
8
  Author URI: http://hmn.md/
9
  License: GPL-2.0+
changelog.txt CHANGED
@@ -1,5 +1,3 @@
1
- * Check if shell_exec is available before running command
2
- * Only validate day of month if this is the schedule type
3
- * Make FS optional and fix the DB connect method
4
- * (issue-770) Exclude the folder, not the wildcard
5
- * (issue-751) Rename plugin
1
+ 3196233 (HEAD, origin/master, origin/HEAD, master) Fix incorrect filename
2
+ 68b87f1 Remove commented admin_post hook
3
+ 16a6b3a Update plugin version class constant
 
 
classes/class-plugin.php CHANGED
@@ -11,8 +11,7 @@ register_deactivation_hook( __FILE__, array( 'HM\BackUpWordPress\Setup', 'deacti
11
  * Class Plugin
12
  */
13
  final class Plugin {
14
-
15
- const PLUGIN_VERSION = '3.2.0';
16
 
17
  /**
18
  * @var Plugin The singleton instance.
11
  * Class Plugin
12
  */
13
  final class Plugin {
14
+ const PLUGIN_VERSION = '3.2.2';
 
15
 
16
  /**
17
  * @var Plugin The singleton instance.
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: humanmade, willmot, pauldewouters, joehoyle, mattheu, tcrsavage, c
3
  Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
4
  Requires at least: 3.9
5
  Tested up to: 4.2-beta
6
- Stable tag: 3.2.1
7
 
8
  Simple automated backups of your WordPress powered website.
9
 
@@ -140,6 +140,10 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
140
 
141
  == Changelog ==
142
 
 
 
 
 
143
  ### 3.2.1 / 2015-03-25
144
 
145
  * Check if shell_exec is available before running command
3
  Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
4
  Requires at least: 3.9
5
  Tested up to: 4.2-beta
6
+ Stable tag: 3.2.2
7
 
8
  Simple automated backups of your WordPress powered website.
9
 
140
 
141
  == Changelog ==
142
 
143
+ ### 3.2.2 / 2015-03-25
144
+
145
+ * Fixes error in manual backups, caused by incorrect plugin version number in class, which is used for the JS script version.
146
+
147
  ### 3.2.1 / 2015-03-25
148
 
149
  * Check if shell_exec is available before running command