BackUpWordPress - Version 1.1.2

Version Description

Download this release

Release Info

Developer willmot
Plugin Icon 128x128 BackUpWordPress
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

Files changed (2) hide show
  1. plugin.php +3 -3
  2. readme.txt +5 -1
plugin.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: BackUpWordPress
5
  Plugin URI: http://humanmade.co.uk/
6
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>.
7
  Author: Human Made Limited
8
- Version: 1.1.1
9
  Author URI: http://humanmade.co.uk/
10
  */
11
 
@@ -60,11 +60,11 @@ function hmbkp_actions() {
60
  hmbkp_setup_daily_schedule();
61
 
62
  // Allow the time of the daily backup to be changed
63
- if ( defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) && HMBKP_DAILY_SCHEDULE_TIME && wp_next_scheduled( 'hmbkp_schedule_backup_hook' ) != strtotime( HMBKP_DAILY_SCHEDULE_TIME ) )
64
  hmbkp_setup_daily_schedule();
65
 
66
  // Reset if custom time is removed
67
- elseif( ( ( defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) && !HMBKP_DAILY_SCHEDULE_TIME ) || !defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) ) && date( 'H:i', wp_next_scheduled( 'hmbkp_schedule_backup_hook' ) ) != '23:00' )
68
  hmbkp_setup_daily_schedule();
69
 
70
  }
5
  Plugin URI: http://humanmade.co.uk/
6
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>.
7
  Author: Human Made Limited
8
+ Version: 1.1.2
9
  Author URI: http://humanmade.co.uk/
10
  */
11
 
60
  hmbkp_setup_daily_schedule();
61
 
62
  // Allow the time of the daily backup to be changed
63
+ if ( defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) && HMBKP_DAILY_SCHEDULE_TIME && wp_next_scheduled( 'hmbkp_schedule_backup_hook' ) != strtotime( HMBKP_DAILY_SCHEDULE_TIME ) && wp_next_scheduled( 'hmbkp_schedule_backup_hook' ) )
64
  hmbkp_setup_daily_schedule();
65
 
66
  // Reset if custom time is removed
67
+ elseif( ( ( defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) && !HMBKP_DAILY_SCHEDULE_TIME ) || !defined( 'HMBKP_DAILY_SCHEDULE_TIME' ) ) && date( 'H:i', wp_next_scheduled( 'hmbkp_schedule_backup_hook' ) ) != '23:00' && ( defined( 'HMBKP_DISABLE_AUTOMATIC_BACKUP' ) && !HMBKP_DISABLE_AUTOMATIC_BACKUP || !defined( 'HMBKP_DISABLE_AUTOMATIC_BACKUP' ) ) )
68
  hmbkp_setup_daily_schedule();
69
 
70
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: willmot, humanmade
3
  Tags: back up, backup, backups
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
- Stable tag: 1.1.1
7
 
8
  Simple automated backups of your WordPress powered website.
9
 
@@ -27,6 +27,10 @@ Contact support@humanmade.co.uk for help/support.
27
 
28
  == Changelog ==
29
 
 
 
 
 
30
  #### 1.1.1
31
 
32
  * Fix a possible `max_execution_timeout` fatal error when attempting to calculate the path to `mysqldump`.
3
  Tags: back up, backup, backups
4
  Requires at least: 3.0
5
  Tested up to: 3.1
6
+ Stable tag: 1.1.2
7
 
8
  Simple automated backups of your WordPress powered website.
9
 
27
 
28
  == Changelog ==
29
 
30
+ #### 1.1.2
31
+
32
+ * Fix a bug that stopped `HMBKP_DISABLE_AUTOMATIC_BACKUP` from working.
33
+
34
  #### 1.1.1
35
 
36
  * Fix a possible `max_execution_timeout` fatal error when attempting to calculate the path to `mysqldump`.