Version Description
Download this release
Release Info
Developer | willmot |
Plugin | BackUpWordPress |
Version | 2.0.6 |
Comparing to | |
See all releases |
Code changes from version 2.0.5 to 2.0.6
- admin/menu.php +1 -1
- functions/core.php +1 -1
- plugin.php +1 -1
- readme.txt +6 -1
admin/menu.php
CHANGED
@@ -73,7 +73,7 @@ function hmbkp_contextual_help() {
|
|
73 |
$constants = ob_get_clean();
|
74 |
|
75 |
get_current_screen()->add_help_tab( array( 'title' => __( 'FAQ', 'hmbkp' ), 'id' => 'hmbkp_faq', 'content' => $warning . $plugin->sections['faq'] ) );
|
76 |
-
get_current_screen()->add_help_tab( array( 'title' => __( 'Constants', 'hmbkp' ), 'id' => 'hmbkp_constants', 'content' => $
|
77 |
|
78 |
get_current_screen()->set_help_sidebar(
|
79 |
'<p><strong>' . __( 'For more information:', 'hmbkp' ) . '</strong></p>' .
|
73 |
$constants = ob_get_clean();
|
74 |
|
75 |
get_current_screen()->add_help_tab( array( 'title' => __( 'FAQ', 'hmbkp' ), 'id' => 'hmbkp_faq', 'content' => $warning . $plugin->sections['faq'] ) );
|
76 |
+
get_current_screen()->add_help_tab( array( 'title' => __( 'Constants', 'hmbkp' ), 'id' => 'hmbkp_constants', 'content' => $constants ) );
|
77 |
|
78 |
get_current_screen()->set_help_sidebar(
|
79 |
'<p><strong>' . __( 'For more information:', 'hmbkp' ) . '</strong></p>' .
|
functions/core.php
CHANGED
@@ -35,7 +35,7 @@ function hmbkp_deactivate() {
|
|
35 |
|
36 |
// Clear hmbkp crons
|
37 |
foreach( get_option( 'cron' ) as $cron )
|
38 |
-
foreach( $cron as $key => $value )
|
39 |
if ( strpos( $key, 'hmbkp' ) !== false )
|
40 |
wp_clear_scheduled_hook( $key );
|
41 |
|
35 |
|
36 |
// Clear hmbkp crons
|
37 |
foreach( get_option( 'cron' ) as $cron )
|
38 |
+
foreach( (array) $cron as $key => $value )
|
39 |
if ( strpos( $key, 'hmbkp' ) !== false )
|
40 |
wp_clear_scheduled_hook( $key );
|
41 |
|
plugin.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: BackUpWordPress
|
|
5 |
Plugin URI: http://hmn.md/backupwordpress/
|
6 |
Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools → Backups</strong>.
|
7 |
Author: Human Made Limited
|
8 |
-
Version: 2.0.
|
9 |
Author URI: http://hmn.md/
|
10 |
*/
|
11 |
|
5 |
Plugin URI: http://hmn.md/backupwordpress/
|
6 |
Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools → Backups</strong>.
|
7 |
Author: Human Made Limited
|
8 |
+
Version: 2.0.6
|
9 |
Author URI: http://hmn.md/
|
10 |
*/
|
11 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: humanmade, joehoyle, mattheu, tcrsavage, willmot, cuvelier
|
|
3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
4 |
Requires at least: 3.3.3
|
5 |
Tested up to: 3.5
|
6 |
-
Stable tag: 2.0.
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
@@ -103,6 +103,11 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
|
|
|
|
106 |
#### 2.0.5
|
107 |
|
108 |
* Re-setup the cron schedules if they get deleted somehow.
|
3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
4 |
Requires at least: 3.3.3
|
5 |
Tested up to: 3.5
|
6 |
+
Stable tag: 2.0.6
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
#### 2.0.6
|
107 |
+
|
108 |
+
* Fix possible warning on plugin activation if the sites cron option is empty.
|
109 |
+
* Don't show the version warning in the help for Constants as that comes from the current version.
|
110 |
+
|
111 |
#### 2.0.5
|
112 |
|
113 |
* Re-setup the cron schedules if they get deleted somehow.
|