Version Description
- Added Presstrends tracking code.
Download this release
Release Info
Developer | jcpeden |
Plugin | Backup and Restore WordPress – WPBackItUp Backup Plugin |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.0.9
- includes/admin_page.php +1 -1
- readme.txt +1 -7
- wp-backitup.php +12 -0
includes/admin_page.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php
|
1 |
+
<?php
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbackitup.com
|
|
4 |
Tags: backup wordpress, database backup, backup database, download database, backup and restore, restoring wordpress, restore wordpress, restore wordpress backup,
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -95,9 +95,6 @@ Yes.
|
|
95 |
|
96 |
== Changelog ==
|
97 |
|
98 |
-
= 1.1.0 =
|
99 |
-
* Fixed bugs with addons system.
|
100 |
-
|
101 |
= 1.0.9 =
|
102 |
* Added Presstrends tracking code.
|
103 |
|
@@ -130,9 +127,6 @@ Yes.
|
|
130 |
|
131 |
== Upgrade Notice ==
|
132 |
|
133 |
-
= 1.1.0 =
|
134 |
-
* Non-critical upgrade. Fixed bugs with addons system that caused problems for some users.
|
135 |
-
|
136 |
= 1.0.9 =
|
137 |
* Non-essential upgrade. Added Presstrends code.
|
138 |
|
4 |
Tags: backup wordpress, database backup, backup database, download database, backup and restore, restoring wordpress, restore wordpress, restore wordpress backup,
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 3.5
|
7 |
+
Stable tag: 1.0.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
95 |
|
96 |
== Changelog ==
|
97 |
|
|
|
|
|
|
|
98 |
= 1.0.9 =
|
99 |
* Added Presstrends tracking code.
|
100 |
|
127 |
|
128 |
== Upgrade Notice ==
|
129 |
|
|
|
|
|
|
|
130 |
= 1.0.9 =
|
131 |
* Non-essential upgrade. Added Presstrends code.
|
132 |
|
wp-backitup.php
CHANGED
@@ -70,6 +70,18 @@ function wpbackitup_logreader() {
|
|
70 |
}
|
71 |
add_action('wp_ajax_wpbackitup_logreader', 'wpbackitup_logreader');
|
72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
/**
|
74 |
* PressTrends Plugin API
|
75 |
*/
|
70 |
}
|
71 |
add_action('wp_ajax_wpbackitup_logreader', 'wpbackitup_logreader');
|
72 |
|
73 |
+
//load addons
|
74 |
+
function dir_contains_children($dir) {
|
75 |
+
$result = false;
|
76 |
+
if($dh = opendir($dir)) {
|
77 |
+
while(!$result && ($file = readdir($dh)) !== false) {
|
78 |
+
if($file != ("."||"..") {
|
79 |
+
include $file;
|
80 |
+
}
|
81 |
+
}
|
82 |
+
closedir($dh);
|
83 |
+
}
|
84 |
+
|
85 |
/**
|
86 |
* PressTrends Plugin API
|
87 |
*/
|