Plugin Directory

Changeset 1476439


Ignore:
Timestamp:
08/17/2016 07:11:53 AM (10 years ago)
Author:
michitzky
Message:

tagging version 1.0.6

Location:
mk-simple-backups
Files:
3 edited
7 copied

Legend:

Unmodified
Added
Removed
  • mk-simple-backups/tags/1.0.6/class.backuphandler.php

    r1062062 r1476439  
    2121    public $tmp_files = array();
    2222    public $sys_enabled = false;
     23    public $backup_filename = "";
    2324    private $backup_name = "";
    2425    private $backup_desc = "";
     
    117118        // scan
    118119        if(is_dir($path)) {
    119             for($i = 0; $i <= count($tmp_folders); $i++) {
     120            for($i = 0; $i < count($tmp_folders); $i++) {
    120121               
    121122                $tmp_dir = $tmp_folders[$i];
     
    207208    function removeFiles( $files ) {
    208209       
     210        $errors = array();
     211       
    209212        foreach($files AS $name=>$src ) {
    210213           
     
    215218        }
    216219       
    217         // if there are errors (filenames that didn't get removed) return array with those
     220        // if there are errors (filenames that didnt get removed) return array with those
    218221        if(count($errors) > 0) return $errors;
    219222        else {
  • mk-simple-backups/tags/1.0.6/mk-simple-backups.php

    r1476400 r1476439  
    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: 1.0.5
     7 * Version: 1.0.6
    88 * Author: Michael Kühni
    99 * Author URI: http://michaelkuehni.ch
     
    111111                       
    112112                       
    113                         $bkp->createZip();
     113                        $bkp_filename = $bkp->createZip();
    114114                       
    115115                       
     
    204204                    foreach($msg AS $m) {
    205205                   
    206                         if($m["error"] == true) $class = ' class="error"';
     206                        if(isset($m["error"]) AND $m["error"] == true) $class = ' class="error"';
    207207                        else unset($class);
    208208                   
  • mk-simple-backups/tags/1.0.6/readme.txt

    r1476400 r1476439  
    33Tags: backup, db, uploads
    44Requires at least: 3.7
    5 Stable tag: 1.0.5
     5Stable tag: 1.0.6
    66Tested up to: 4.6
    77License: GPLv2 or later
     
    6868== Changelog ==
    6969
    70 = 1.0.5 =
     70
     71
     72= 1.0.6 =
    7173* Compatibility with WP 4.6
     74* fixed some php errors provided by adampatterson (thanks)
    7275
    7376= 1.0.4 =
  • mk-simple-backups/trunk/class.backuphandler.php

    r1062062 r1476439  
    2121    public $tmp_files = array();
    2222    public $sys_enabled = false;
     23    public $backup_filename = "";
    2324    private $backup_name = "";
    2425    private $backup_desc = "";
     
    117118        // scan
    118119        if(is_dir($path)) {
    119             for($i = 0; $i <= count($tmp_folders); $i++) {
     120            for($i = 0; $i < count($tmp_folders); $i++) {
    120121               
    121122                $tmp_dir = $tmp_folders[$i];
     
    207208    function removeFiles( $files ) {
    208209       
     210        $errors = array();
     211       
    209212        foreach($files AS $name=>$src ) {
    210213           
     
    215218        }
    216219       
    217         // if there are errors (filenames that didn't get removed) return array with those
     220        // if there are errors (filenames that didnt get removed) return array with those
    218221        if(count($errors) > 0) return $errors;
    219222        else {
  • mk-simple-backups/trunk/mk-simple-backups.php

    r1476400 r1476439  
    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: 1.0.5
     7 * Version: 1.0.6
    88 * Author: Michael Kühni
    99 * Author URI: http://michaelkuehni.ch
     
    111111                       
    112112                       
    113                         $bkp->createZip();
     113                        $bkp_filename = $bkp->createZip();
    114114                       
    115115                       
     
    204204                    foreach($msg AS $m) {
    205205                   
    206                         if($m["error"] == true) $class = ' class="error"';
     206                        if(isset($m["error"]) AND $m["error"] == true) $class = ' class="error"';
    207207                        else unset($class);
    208208                   
  • mk-simple-backups/trunk/readme.txt

    r1476400 r1476439  
    33Tags: backup, db, uploads
    44Requires at least: 3.7
    5 Stable tag: 1.0.5
     5Stable tag: 1.0.6
    66Tested up to: 4.6
    77License: GPLv2 or later
     
    6868== Changelog ==
    6969
    70 = 1.0.5 =
     70
     71
     72= 1.0.6 =
    7173* Compatibility with WP 4.6
     74* fixed some php errors provided by adampatterson (thanks)
    7275
    7376= 1.0.4 =
Note: See TracChangeset for help on using the changeset viewer.