Plugin Directory

Changeset 1015965


Ignore:
Timestamp:
10/29/2014 02:34:18 PM (11 years ago)
Author:
pmtarantino
Message:

Version 0.1.11.1 - Fixes minor problem with the clone recursive copy function

Location:
multisite-cloner/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • multisite-cloner/trunk/multisite-cloner.php

    r1008658 r1015965  
    55 * Plugin URI: https://wordpress.org/plugins/multisite-cloner
    66 * Description: When creating a new blog on WordPress Multisite, copies all the posts, settings and files, from a selected blog into the new one.
    7  * Version: 0.1.11
     7 * Version: 0.1.11.1
    88 * Author: Manuel Razzari, Patricio Tarantino
    99 * Author URI: http://tipit.net
     
    413413
    414414    // maybe I am not a dir after all.
    415     if(!$dir || !is_dir($dir)) {
    416         mkdir($dir);
     415    if(!$dir || !is_dir($src)) {
     416        mkdir($src);
    417417    }
    418418
  • multisite-cloner/trunk/readme.txt

    r1008658 r1015965  
    6262== Changelog ==
    6363
     64= 0.1.11.1 =
     65* Fixes minor [problem with the clone recursive copy function](https://wordpress.org/support/topic/error-while-adding-a-new-site)
     66
    6467= 0.1.11 =
    6568* Fixes [problem with non-existents dirs](https://wordpress.org/support/topic/pull-request-error-while-copying-a-dir-while-cloning)
     
    106109== Upgrade Notice ==
    107110
    108 = 0.1.11 =
    109 * Fixes [problem with non-existents dirs](https://wordpress.org/support/topic/pull-request-error-while-copying-a-dir-while-cloning)
     111= 0.1.11.1 =
     112* Fixes minor problem with the clone recursive copy function.
Note: See TracChangeset for help on using the changeset viewer.