Plugin Directory

Changeset 3281547


Ignore:
Timestamp:
04/25/2025 07:33:22 AM (11 months ago)
Author:
clonable
Message:

v2.4.1

Location:
clonable
Files:
122 added
11 edited

Legend:

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

    r3280987 r3281547  
    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.4.0
     7Version: 2.4.1
    88Author: Clonable BV
    99Author URI: https://www.clonable.net
     
    100100include_once "services/MultiCurrencyService.php";
    101101include_once "services/CacheService.php";
    102 include_once "services/CookieService.php";
    103102
    104103// include service modules
     
    114113
    115114define('CLONABLE_NAME', 'Clonable');
    116 define('CLONABLE_VERSION', '2.4.0');
     115define('CLONABLE_VERSION', '2.4.1');
    117116
    118117try {
  • clonable/trunk/readme-da_DK.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8
  • clonable/trunk/readme-de_DE.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8
  • clonable/trunk/readme-es_ES.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8
  • clonable/trunk/readme-fr_FR.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8
  • clonable/trunk/readme-it_IT.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8
  • clonable/trunk/readme-nb_NO.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8
  • clonable/trunk/readme-nl_NL.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Support toegevoegd voor WordPress 6.8.
  • clonable/trunk/readme-sv_SE.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8
  • clonable/trunk/readme.txt

    r3280987 r3281547  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 2.4.0
     7Stable tag: 2.4.1
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.4.1
     35Fixed include_once problem in non-debug mode.
     36
    3437v2.4.0
    3538Added support for WordPress 6.8.
  • clonable/trunk/services/CacheService.php

    r3280987 r3281547  
    1212{
    1313    public function __construct() {
    14         add_filter('supercache_filename_str', 'wp_super_cache');
     14        add_filter('supercache_filename_str', [$this, 'wp_super_cache']);
    1515        add_action('wp_headers', [$this, 'add_vary_header']);
    1616    }
Note: See TracChangeset for help on using the changeset viewer.