Plugin Directory

Changeset 893007


Ignore:
Timestamp:
04/14/2014 04:23:31 PM (12 years ago)
Author:
michitzky
Message:

tagging version 0.6.2

Location:
mk-simple-backups
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • mk-simple-backups/tags/0.6.2/mk-simple-backups.php

    r892999 r893007  
    55 * Plugin URI: http://wordpress.org/plugins/mk-simple-backups/
    66 * Description: Allows you to create simple backups on a dedicated page nested in the "Tools" Menu.
    7  * Version: 0.6.1
     7 * Version: 0.6.2
    88 * Author: Michael Kühni
    99 * Author URI: http://michaelkuehni.ch
     
    115115                                case "uploads":
    116116                                    if($_POST["upload_options"] == "file") {
    117                                         $s = $bkp->createUploadBackupByDB();
     117                                        $s = $bkp->createUploadBackup();
    118118                                        $desc = __("Uploads (file based)", "mk-simple-backups");
    119119                                    }
    120120                                    else {
    121                                         $s = $bkp->createUploadBackup();
     121                                        $s = $bkp->createUploadBackupByDB();
    122122                                        $desc = __("Uploads (db based)", "mk-simple-backups");
    123123                                    }
  • mk-simple-backups/tags/0.6.2/readme.txt

    r892999 r893007  
    33Tags: backup, db, uploads
    44Requires at least: 3.8
    5 Stable tag: 0.6.1
     5Stable tag: 0.6.2
    66Tested up to: 3.9RC1
    77License: GPLv2 or later
     
    4545
    4646== Changelog ==
     47
     48= 0.6.2 =
     49* Fixed Issue with Upload Backup
    4750
    4851= 0.6.1 =
  • mk-simple-backups/trunk/mk-simple-backups.php

    r892999 r893007  
    55 * Plugin URI: http://wordpress.org/plugins/mk-simple-backups/
    66 * Description: Allows you to create simple backups on a dedicated page nested in the "Tools" Menu.
    7  * Version: 0.6.1
     7 * Version: 0.6.2
    88 * Author: Michael Kühni
    99 * Author URI: http://michaelkuehni.ch
     
    115115                                case "uploads":
    116116                                    if($_POST["upload_options"] == "file") {
    117                                         $s = $bkp->createUploadBackupByDB();
     117                                        $s = $bkp->createUploadBackup();
    118118                                        $desc = __("Uploads (file based)", "mk-simple-backups");
    119119                                    }
    120120                                    else {
    121                                         $s = $bkp->createUploadBackup();
     121                                        $s = $bkp->createUploadBackupByDB();
    122122                                        $desc = __("Uploads (db based)", "mk-simple-backups");
    123123                                    }
  • mk-simple-backups/trunk/readme.txt

    r892999 r893007  
    33Tags: backup, db, uploads
    44Requires at least: 3.8
    5 Stable tag: 0.6.1
     5Stable tag: 0.6.2
    66Tested up to: 3.9RC1
    77License: GPLv2 or later
     
    4545
    4646== Changelog ==
     47
     48= 0.6.2 =
     49* Fixed Issue with Upload Backup
    4750
    4851= 0.6.1 =
Note: See TracChangeset for help on using the changeset viewer.