Plugin Directory

Changeset 3023346


Ignore:
Timestamp:
01/18/2024 08:00:41 AM (2 years ago)
Author:
keycdn
Message:

v2.0.7

Location:
cdn-enabler
Files:
4 edited
3 copied

Legend:

Unmodified
Added
Removed
  • cdn-enabler/tags/2.0.7/cdn-enabler.php

    r2836559 r3023346  
    77Author URI: https://www.keycdn.com
    88License: GPLv2 or later
    9 Version: 2.0.6
     9Version: 2.0.7
    1010*/
    1111
     
    3333
    3434// constants
    35 define( 'CDN_ENABLER_VERSION', '2.0.6' );
     35define( 'CDN_ENABLER_VERSION', '2.0.7' );
    3636define( 'CDN_ENABLER_MIN_PHP', '5.6' );
    3737define( 'CDN_ENABLER_MIN_WP', '5.1' );
  • cdn-enabler/tags/2.0.7/inc/cdn_enabler_engine.class.php

    r2731535 r3023346  
    6464    private static function start_buffering() {
    6565
    66         ob_start( 'self::end_buffering' );
     66        ob_start( [self::class, 'end_buffering'] );
    6767    }
    6868
  • cdn-enabler/tags/2.0.7/readme.txt

    r2914815 r3023346  
    33Tags: cdn, content delivery network, content distribution network
    44Tested up to: 6.2
    5 Stable tag: 2.0.6
     5Stable tag: 2.0.7
    66Requires at least: 5.1
    77Requires PHP: 5.6
     
    4848
    4949== Changelog ==
     50
     51= 2.0.7 =
     52* PHP 8.2 compatibility
    5053
    5154= 2.0.6 =
  • cdn-enabler/trunk/cdn-enabler.php

    r2836559 r3023346  
    77Author URI: https://www.keycdn.com
    88License: GPLv2 or later
    9 Version: 2.0.6
     9Version: 2.0.7
    1010*/
    1111
     
    3333
    3434// constants
    35 define( 'CDN_ENABLER_VERSION', '2.0.6' );
     35define( 'CDN_ENABLER_VERSION', '2.0.7' );
    3636define( 'CDN_ENABLER_MIN_PHP', '5.6' );
    3737define( 'CDN_ENABLER_MIN_WP', '5.1' );
  • cdn-enabler/trunk/inc/cdn_enabler_engine.class.php

    r2731535 r3023346  
    6464    private static function start_buffering() {
    6565
    66         ob_start( 'self::end_buffering' );
     66        ob_start( [self::class, 'end_buffering'] );
    6767    }
    6868
  • cdn-enabler/trunk/readme.txt

    r2914815 r3023346  
    33Tags: cdn, content delivery network, content distribution network
    44Tested up to: 6.2
    5 Stable tag: 2.0.6
     5Stable tag: 2.0.7
    66Requires at least: 5.1
    77Requires PHP: 5.6
     
    4848
    4949== Changelog ==
     50
     51= 2.0.7 =
     52* PHP 8.2 compatibility
    5053
    5154= 2.0.6 =
Note: See TracChangeset for help on using the changeset viewer.