Plugin Directory

Changeset 2737708


Ignore:
Timestamp:
06/05/2022 08:49:31 PM (4 years ago)
Author:
speedien
Message:

v1.1.2

Location:
speedien
Files:
4 deleted
4 edited
6 copied

Legend:

Unmodified
Added
Removed
  • speedien/tags/1.1.2/readme.txt

    r2685504 r2737708  
    33Tags: pagespeed, cache, webperf, core web vitals, vitals
    44Requires at least: 4.6
    5 Tested up to: 5.9
     5Tested up to: 6.0
    66Requires PHP: 5.6
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    140140== Changelog ==
    141141
     142= 1.1.2 - 5 Jun, 2022 =
     143- Bugfix to reduce error log warnings
     144- Added support for custom CDNs
     145
    142146= 1.1.1 - 25 Jan, 2022 =
    143147- Bugfix for Elementor
  • speedien/tags/1.1.2/speedien.php

    r2685504 r2737708  
    3333    file_put_contents($wp_config_file, $wp_config);
    3434}
    35 register_deactivation_hook( __FILE__, 'speedien_deactivate' );
     35//register_deactivation_hook( __FILE__, 'speedien_deactivate' );
  • speedien/tags/1.1.2/speedien_cache.php

    r2685504 r2737708  
    109109            list($tag) = $matches;
    110110
    111             $EXTRA = constant('wpspdn_EXTRA_ATTRS') ?: '';
     111            $EXTRA = '';
    112112
    113113            $result = $tag;
     
    176176        update_option('speedien_cdnurl',$cdnurl);
    177177    }
     178
     179    if(defined('SPEEDIEN_CUSTOM_CDN'))
     180    {
     181        $cdnurl = 'nocdn';
     182    }
    178183   
    179184    if($cdnurl!== 'nocdn')
  • speedien/tags/1.1.2/speedien_ui.php

    r2664756 r2737708  
    8888 * Register our speedien_settings_init to the admin_init action hook.
    8989 */
    90 add_action('admin_init', 'speedien_settings_init');
     90//add_action('admin_init', 'speedien_settings_init');
    9191
    9292function speedien_cache_init()
  • speedien/trunk/readme.txt

    r2685504 r2737708  
    33Tags: pagespeed, cache, webperf, core web vitals, vitals
    44Requires at least: 4.6
    5 Tested up to: 5.9
     5Tested up to: 6.0
    66Requires PHP: 5.6
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    140140== Changelog ==
    141141
     142= 1.1.2 - 5 Jun, 2022 =
     143- Bugfix to reduce error log warnings
     144- Added support for custom CDNs
     145
    142146= 1.1.1 - 25 Jan, 2022 =
    143147- Bugfix for Elementor
  • speedien/trunk/speedien.php

    r2685504 r2737708  
    3333    file_put_contents($wp_config_file, $wp_config);
    3434}
    35 register_deactivation_hook( __FILE__, 'speedien_deactivate' );
     35//register_deactivation_hook( __FILE__, 'speedien_deactivate' );
  • speedien/trunk/speedien_cache.php

    r2685504 r2737708  
    109109            list($tag) = $matches;
    110110
    111             $EXTRA = constant('wpspdn_EXTRA_ATTRS') ?: '';
     111            $EXTRA = '';
    112112
    113113            $result = $tag;
     
    176176        update_option('speedien_cdnurl',$cdnurl);
    177177    }
     178
     179    if(defined('SPEEDIEN_CUSTOM_CDN'))
     180    {
     181        $cdnurl = 'nocdn';
     182    }
    178183   
    179184    if($cdnurl!== 'nocdn')
  • speedien/trunk/speedien_ui.php

    r2664756 r2737708  
    8888 * Register our speedien_settings_init to the admin_init action hook.
    8989 */
    90 add_action('admin_init', 'speedien_settings_init');
     90//add_action('admin_init', 'speedien_settings_init');
    9191
    9292function speedien_cache_init()
Note: See TracChangeset for help on using the changeset viewer.