Changeset 352554
- Timestamp:
- 02/27/2011 04:38:25 PM (15 years ago)
- Location:
- updraft
- Files:
-
- 2 edited
- 3 copied
-
tags/0.6.1 (copied) (copied from updraft/trunk)
-
tags/0.6.1/readme.txt (copied) (copied from updraft/trunk/readme.txt) (2 diffs)
-
tags/0.6.1/updraft.php (copied) (copied from updraft/trunk/updraft.php) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/updraft.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
updraft/tags/0.6.1/readme.txt
r268219 r352554 4 4 Tags: backup, restore, database, rackspace, cloudfiles, cloud, amazon, s3, ftp, cloud 5 5 Requires at least: 3.0 6 Tested up to: 3. 07 Stable tag: 0.6 6 Tested up to: 3.1 7 Stable tag: 0.6.1 8 8 9 9 Updraft - Backup/Restore is a plugin aimed at simplifying backups (and restoration) for your blog. Backup into the cloud (Cloud Files, S3, FTP, and more) and restore with a single click! … … 25 25 26 26 == Changelog == 27 = v0.6.1 - 2/27/2011 = 28 * Fixed local backups not deleting in certain cases 29 27 30 = v0.6 - 7/27/2010 = 28 31 * Added blog name to backup names -
updraft/tags/0.6.1/updraft.php
r268219 r352554 16 16 Description: Updraft - Backup/Restore is a plugin designed to back up your WordPress blog. Uploads, themes, plugins, and your DB can be backed up to Rackspace Cloud Files, Amazon S3, sent to an FTP server, or even emailed to you on a scheduled basis. 17 17 Author: Paul Kehrer 18 Version: 0.6 18 Version: 0.6.1 19 19 Author URI: http://langui.sh/ 20 20 */ … … 137 137 foreach($backup_to_delete as $file) { 138 138 $fullpath = trailingslashit(get_option('updraft_dir')).$file; 139 @unlink($f ile); //delete it if it's locally available139 @unlink($fullpath); //delete it if it's locally available 140 140 } 141 141 } -
updraft/trunk/readme.txt
r268219 r352554 4 4 Tags: backup, restore, database, rackspace, cloudfiles, cloud, amazon, s3, ftp, cloud 5 5 Requires at least: 3.0 6 Tested up to: 3. 07 Stable tag: 0.6 6 Tested up to: 3.1 7 Stable tag: 0.6.1 8 8 9 9 Updraft - Backup/Restore is a plugin aimed at simplifying backups (and restoration) for your blog. Backup into the cloud (Cloud Files, S3, FTP, and more) and restore with a single click! … … 25 25 26 26 == Changelog == 27 = v0.6.1 - 2/27/2011 = 28 * Fixed local backups not deleting in certain cases 29 27 30 = v0.6 - 7/27/2010 = 28 31 * Added blog name to backup names -
updraft/trunk/updraft.php
r268219 r352554 16 16 Description: Updraft - Backup/Restore is a plugin designed to back up your WordPress blog. Uploads, themes, plugins, and your DB can be backed up to Rackspace Cloud Files, Amazon S3, sent to an FTP server, or even emailed to you on a scheduled basis. 17 17 Author: Paul Kehrer 18 Version: 0.6 18 Version: 0.6.1 19 19 Author URI: http://langui.sh/ 20 20 */ … … 137 137 foreach($backup_to_delete as $file) { 138 138 $fullpath = trailingslashit(get_option('updraft_dir')).$file; 139 @unlink($f ile); //delete it if it's locally available139 @unlink($fullpath); //delete it if it's locally available 140 140 } 141 141 }
Note: See TracChangeset
for help on using the changeset viewer.