Plugin Directory

Changeset 352554


Ignore:
Timestamp:
02/27/2011 04:38:25 PM (15 years ago)
Author:
reaperhulk
Message:

0.6.1 tagged for release. fixes local backup bug

Location:
updraft
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • updraft/tags/0.6.1/readme.txt

    r268219 r352554  
    44Tags: backup, restore, database, rackspace, cloudfiles, cloud, amazon, s3, ftp, cloud
    55Requires at least: 3.0
    6 Tested up to: 3.0
    7 Stable tag: 0.6
     6Tested up to: 3.1
     7Stable tag: 0.6.1
    88
    99Updraft - 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!
     
    2525
    2626== Changelog ==
     27= v0.6.1 - 2/27/2011 =
     28* Fixed local backups not deleting in certain cases
     29
    2730= v0.6 - 7/27/2010 =
    2831* Added blog name to backup names
  • updraft/tags/0.6.1/updraft.php

    r268219 r352554  
    1616Description: 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.
    1717Author: Paul Kehrer
    18 Version: 0.6
     18Version: 0.6.1
    1919Author URI: http://langui.sh/
    2020*/
     
    137137                    foreach($backup_to_delete as $file) {
    138138                        $fullpath = trailingslashit(get_option('updraft_dir')).$file;
    139                         @unlink($file); //delete it if it's locally available
     139                        @unlink($fullpath); //delete it if it's locally available
    140140                    }
    141141                }
  • updraft/trunk/readme.txt

    r268219 r352554  
    44Tags: backup, restore, database, rackspace, cloudfiles, cloud, amazon, s3, ftp, cloud
    55Requires at least: 3.0
    6 Tested up to: 3.0
    7 Stable tag: 0.6
     6Tested up to: 3.1
     7Stable tag: 0.6.1
    88
    99Updraft - 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!
     
    2525
    2626== Changelog ==
     27= v0.6.1 - 2/27/2011 =
     28* Fixed local backups not deleting in certain cases
     29
    2730= v0.6 - 7/27/2010 =
    2831* Added blog name to backup names
  • updraft/trunk/updraft.php

    r268219 r352554  
    1616Description: 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.
    1717Author: Paul Kehrer
    18 Version: 0.6
     18Version: 0.6.1
    1919Author URI: http://langui.sh/
    2020*/
     
    137137                    foreach($backup_to_delete as $file) {
    138138                        $fullpath = trailingslashit(get_option('updraft_dir')).$file;
    139                         @unlink($file); //delete it if it's locally available
     139                        @unlink($fullpath); //delete it if it's locally available
    140140                    }
    141141                }
Note: See TracChangeset for help on using the changeset viewer.