Plugin Directory

Changeset 2446426


Ignore:
Timestamp:
12/27/2020 03:18:51 PM (5 years ago)
Author:
codetot
Message:

Update to v1.0.4

Location:
ct-optimization
Files:
34 added
3 edited

Legend:

Unmodified
Added
Removed
  • ct-optimization/trunk/README.txt

    r2446063 r2446426  
    4848== Changelog ==
    4949
     50= 1.0.4 =
     51
     52* Fix enable cdn domain option key.
     53
    5054= 1.0.3 =
    5155
  • ct-optimization/trunk/codetot-optimization.php

    r2446067 r2446426  
    99 * Plugin URI:        https://codetot.com/codetot-optimization
    1010 * Description:       Provides settings for enable/disable WordPress core features and some tweaks for ACF, Gravity Forms, such like Enable CDN, Lazyload assets.
    11  * Version:           1.0.3
     11 * Version:           1.0.4
    1212 * Author:            CODE TOT JSC
    1313 * Author URI:        https://codetot.com
     
    2828 * Rename this for your plugin and update it as you release new versions.
    2929 */
    30 define( 'CODETOT_OPTIMIZATION_VERSION', '1.0.3' );
     30define( 'CODETOT_OPTIMIZATION_VERSION', '1.0.4' );
    3131define( 'CODETOT_OPTIMIZATION_PATH', plugin_dir_path(__FILE__) );
    3232define( 'CODETOT_OPTIMIZATION_URL', plugin_dir_url(__FILE__) );
  • ct-optimization/trunk/includes/class-codetot-optimization-process.php

    r2446063 r2446426  
    287287  {
    288288    $this->site_domain = $this->get_domain_from_url();
    289     $this->enable_cdn = !empty($this->options['enable_cdn']) ? $this->options['enable_cdn'] : false;
     289    $this->enable_cdn = isset($this->options['enable_cdn_domain']) && $this->options['enable_cdn_domain'];
    290290    $this->cdn_domain = !empty($this->options['cdn_domain']) ? $this->options['cdn_domain'] : '';
    291291
Note: See TracChangeset for help on using the changeset viewer.