Version Description
Minor error closing log file fixed
Download this release
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 0.8.30 |
Comparing to | |
See all releases |
Code changes from version 0.8.29 to 0.8.30
- readme.txt +5 -5
- updraftplus.php +4 -3
readme.txt
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
=== UpdraftPlus ===
|
2 |
Contributors: David Anderson
|
3 |
-
Tags: backup, restore, database, cloud, amazon, s3, google drive, google, gdrive, ftp, cloud, updraft, back up
|
4 |
Requires at least: 3.2
|
5 |
-
Tested up to: 3.4.
|
6 |
-
Stable tag: 0.8.
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
-
UpdraftPlus simplifies backups (and restoration)
|
13 |
|
14 |
== Upgrade Notice ==
|
15 |
-
|
16 |
|
17 |
== Installation ==
|
18 |
|
1 |
=== UpdraftPlus ===
|
2 |
Contributors: David Anderson
|
3 |
+
Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, google drive, google, gdrive, ftp, cloud, updraft, back up
|
4 |
Requires at least: 3.2
|
5 |
+
Tested up to: 3.4.2
|
6 |
+
Stable tag: 0.8.30
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
UpdraftPlus simplifies backups (and restoration). Backup into the cloud (S3, Google Drive, FTP, and email) and restore with a single click. Backups of files and database can have separate schedules.
|
13 |
|
14 |
== Upgrade Notice ==
|
15 |
+
Minor error closing log file fixed
|
16 |
|
17 |
== Installation ==
|
18 |
|
updraftplus.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
|
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/updraftplus
|
5 |
Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed. Files and DB can be on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
-
Version: 0.8.
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
Author URI: http://wordshell.net
|
10 |
*/
|
@@ -54,7 +54,7 @@ if(!$updraft->memory_check(192)) {
|
|
54 |
|
55 |
class UpdraftPlus {
|
56 |
|
57 |
-
var $version = '0.8.
|
58 |
|
59 |
var $dbhandle;
|
60 |
var $errors = array();
|
@@ -555,7 +555,7 @@ class UpdraftPlus {
|
|
555 |
}
|
556 |
|
557 |
// Close log file
|
558 |
-
|
559 |
if (!get_option('updraft_debug_mode')) { @unlink($this->logfile_name); }
|
560 |
}
|
561 |
|
@@ -928,6 +928,7 @@ class UpdraftPlus {
|
|
928 |
$this->stow("/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;\n");
|
929 |
$this->stow("/*!40101 SET NAMES " . DB_CHARSET . " */;\n");
|
930 |
}
|
|
|
931 |
|
932 |
foreach ($all_tables as $table) {
|
933 |
$total_tables++;
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/updraftplus
|
5 |
Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed. Files and DB can be on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
+
Version: 0.8.30
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
Author URI: http://wordshell.net
|
10 |
*/
|
54 |
|
55 |
class UpdraftPlus {
|
56 |
|
57 |
+
var $version = '0.8.30';
|
58 |
|
59 |
var $dbhandle;
|
60 |
var $errors = array();
|
555 |
}
|
556 |
|
557 |
// Close log file
|
558 |
+
@fclose($this->logfile_handle);
|
559 |
if (!get_option('updraft_debug_mode')) { @unlink($this->logfile_name); }
|
560 |
}
|
561 |
|
928 |
$this->stow("/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;\n");
|
929 |
$this->stow("/*!40101 SET NAMES " . DB_CHARSET . " */;\n");
|
930 |
}
|
931 |
+
$this->stow("/*!40101 SET foreign_key_checks = 0 */;\n");
|
932 |
|
933 |
foreach ($all_tables as $table) {
|
934 |
$total_tables++;
|