Version Description
Download this release
Release Info
Developer | willmot |
Plugin | BackUpWordPress |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.6.1
- hm-backup/hm-backup.php +4 -2
- plugin.php +1 -1
- readme.txt +5 -1
hm-backup/hm-backup.php
CHANGED
@@ -1195,8 +1195,10 @@ class HM_Backup {
|
|
1195 |
|
1196 |
if ( in_array( $type, array( E_STRICT, E_DEPRECATED ) ) || error_reporting() === 0 )
|
1197 |
return false;
|
1198 |
-
|
1199 |
-
$
|
|
|
|
|
1200 |
|
1201 |
return false;
|
1202 |
|
1195 |
|
1196 |
if ( in_array( $type, array( E_STRICT, E_DEPRECATED ) ) || error_reporting() === 0 )
|
1197 |
return false;
|
1198 |
+
|
1199 |
+
$args = func_get_args();
|
1200 |
+
|
1201 |
+
$this->error( 'php', array_splice( $args, 0, 4 ) );
|
1202 |
|
1203 |
return false;
|
1204 |
|
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: 1.6
|
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: 1.6.1
|
9 |
Author URI: http://hmn.md/
|
10 |
*/
|
11 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: humanmade, joehoyle, mattheu, tcrsavage, willmot
|
|
3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 3.3
|
6 |
-
Stable tag: 1.6
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
@@ -94,6 +94,10 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
|
|
94 |
|
95 |
== Changelog ==
|
96 |
|
|
|
|
|
|
|
|
|
97 |
#### 1.6
|
98 |
|
99 |
* Fixes issue with backups dir being included in backups on some Windows Servers.
|
3 |
Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
|
4 |
Requires at least: 3.1
|
5 |
Tested up to: 3.3
|
6 |
+
Stable tag: 1.6.1
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
#### 1.6.1
|
98 |
+
|
99 |
+
* Fix fatal error on PHP =< 5.3
|
100 |
+
|
101 |
#### 1.6
|
102 |
|
103 |
* Fixes issue with backups dir being included in backups on some Windows Servers.
|