Plugin Directory

Changeset 3304672


Ignore:
Timestamp:
06/02/2025 06:54:46 AM (10 months ago)
Author:
clonable
Message:

version 2.5.1

Location:
clonable
Files:
122 added
11 edited

Legend:

Unmodified
Added
Removed
  • clonable/trunk/clonable-wp.php

    r3302098 r3304672  
    55Description: Official plugin for improving your clones made with Clonable.
    66Plugin URI: https://kb.clonable.net/en/introduction/getting-started/wordpress#de-clonable-plug-in-downloaden
    7 Version: 2.5.0
     7Version: 2.5.1
    88Author: Clonable BV
    99Author URI: https://www.clonable.net
     
    114114
    115115define('CLONABLE_NAME', 'Clonable');
    116 define('CLONABLE_VERSION', '2.5.0');
     116define('CLONABLE_VERSION', '2.5.1');
    117117
    118118try {
  • clonable/trunk/models/Site.php

    r3302098 r3304672  
    6969    public function get_subfolders() {
    7070        $clones = $this->site["clones"];
    71         $mapped_subdomains = array_map(function ($clone) {
    72             if ($clone["is_subfolder_clone"]) {
     71        $domain = $this->get_domain();
     72        $mapped_subdomains = array_map(function ($clone) use ($domain) {
     73            $is_subfolder_clone = ($clone["is_subfolder_clone"] ?? false);
     74            if ($is_subfolder_clone || $clone['domain'] === $domain) {
    7375                return [
    7476                    'subfolder_clone' => $clone["subfolder_clone"],
  • clonable/trunk/readme-da_DK.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
  • clonable/trunk/readme-de_DE.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
  • clonable/trunk/readme-es_ES.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
  • clonable/trunk/readme-fr_FR.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
  • clonable/trunk/readme-it_IT.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
  • clonable/trunk/readme-nb_NO.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
  • clonable/trunk/readme-nl_NL.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Nieuwe globale functie toegevoegd en een 2-tal hooks:
  • clonable/trunk/readme-sv_SE.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
  • clonable/trunk/readme.txt

    r3302098 r3304672  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.5.0
     7Stable tag: 2.5.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.5.1
     35Fixed backward compatibility.
     36
    3437v2.5.0
    3538Added new global function and hooks:
Note: See TracChangeset for help on using the changeset viewer.