Version Description
Download this release
Release Info
Developer | willmot |
Plugin | BackUpWordPress |
Version | 2.2.3 |
Comparing to | |
See all releases |
Code changes from version 2.2.2 to 2.2.3
- admin/actions.php +4 -4
- plugin.php +1 -1
- readme.txt +20 -1
admin/actions.php
CHANGED
@@ -241,6 +241,8 @@ function hmbkp_ajax_cron_test() {
|
|
241 |
|
242 |
die;
|
243 |
|
|
|
|
|
244 |
add_action( 'wp_ajax_hmbkp_cron_test', 'hmbkp_ajax_cron_test' );
|
245 |
|
246 |
/**
|
@@ -454,13 +456,11 @@ function hmbkp_preview_exclude_rule() {
|
|
454 |
|
455 |
$schedule->set_excludes( $excludes );
|
456 |
|
457 |
-
if ( $schedule->get_excluded_file_count() ) {
|
458 |
-
?>
|
459 |
|
460 |
<p><?php printf( _n( '%s matches 1 file.', '%1$s matches %2$d files.', $schedule->get_excluded_file_count(), 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>', $schedule->get_excluded_file_count() ); ?></p>
|
461 |
|
462 |
-
<?php }
|
463 |
-
else { ?>
|
464 |
|
465 |
<p><?php printf( __( '%s didn\'t match any files.', 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>' ); ?></p>
|
466 |
|
241 |
|
242 |
die;
|
243 |
|
244 |
+
}
|
245 |
+
|
246 |
add_action( 'wp_ajax_hmbkp_cron_test', 'hmbkp_ajax_cron_test' );
|
247 |
|
248 |
/**
|
456 |
|
457 |
$schedule->set_excludes( $excludes );
|
458 |
|
459 |
+
if ( $schedule->get_excluded_file_count() ) { ?>
|
|
|
460 |
|
461 |
<p><?php printf( _n( '%s matches 1 file.', '%1$s matches %2$d files.', $schedule->get_excluded_file_count(), 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>', $schedule->get_excluded_file_count() ); ?></p>
|
462 |
|
463 |
+
<?php } else { ?>
|
|
|
464 |
|
465 |
<p><?php printf( __( '%s didn\'t match any files.', 'hmbkp' ), '<code>' . implode( '</code>, <code>', array_map( 'esc_html', $excludes ) ) . '</code>' ); ?></p>
|
466 |
|
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.2.
|
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.2.3
|
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.2.
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
@@ -103,6 +103,25 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
#### 2.2.1
|
107 |
|
108 |
* Stop storing a list of unreadable files in the backup warnings as it's too memory intensive.
|
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.2.3
|
7 |
|
8 |
Simple automated back ups of your WordPress powered website.
|
9 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
#### 2.2.3
|
107 |
+
|
108 |
+
* Fix a parse error, sorry!
|
109 |
+
|
110 |
+
#### 2.2.2
|
111 |
+
|
112 |
+
* Fix a fatal error when uninstalling.
|
113 |
+
* Updated translations for Brazilian, French, Danish, Spanish, Czech, Slovakian, Polish, Italian, German, Latvian, Hebrew, Chinese & Dutch.
|
114 |
+
* Fix a possible notice when using the plugin on a server without internet access.
|
115 |
+
* Don't show the wp-cron error message when `WP_USE_ALTERNATE_CRON` is defined as true.
|
116 |
+
* Ability to override the max attachment size for email notifications using the new `HMBKP_MAX_ATTACHMENT_SIZE` constant.
|
117 |
+
* Nonce some ajax request.
|
118 |
+
* Silence warnings created if `is_executable`, `escapeshellcmd` or `escapeshellarg` are disabled.
|
119 |
+
* Handle situations where the mysql port is set to something wierd.
|
120 |
+
* Fallback to `mysql_connect` on system that disable `mysql_pconnect`.
|
121 |
+
* You can now force the `--single-transaction` param when using `mysqldump` by defining `HMBKP_MYSQLDUMP_SINGLE_TRANSACTION`.
|
122 |
+
* Unit tests for `HM_Backup::is_safe_mode_available()`.
|
123 |
+
* Silence possible PHP Warnings when unlinking files.
|
124 |
+
|
125 |
#### 2.2.1
|
126 |
|
127 |
* Stop storing a list of unreadable files in the backup warnings as it's too memory intensive.
|