Plugin Directory

Changeset 1966376


Ignore:
Timestamp:
10/31/2018 11:08:32 AM (7 years ago)
Author:
oseuk
Message:

Update to version 1.2.3

Location:
ose-lets-encrypt
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ose-lets-encrypt/tags/1.2.3/README.txt

    r1966344 r1966376  
    66Tested up to: 4.9.8
    77Requires PHP: 5.3
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: GNU General Public License v3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.txt
     
    6565
    6666== Changelog ==
     67= 1.2.3
     68* Change clear all option cache to clear ose-lets-encrypt cache data
     69
    6770= 1.2.2
    6871* Fixed bug: token not match caused by options cache
  • ose-lets-encrypt/tags/1.2.3/ose-letsencrypt.php

    r1966344 r1966376  
    1616 * Plugin URI:        https://www.opensource-excellence.com/
    1717 * Description:       OSE Free SSL is an easy-to-use plugin to create SSL certificates from Let’s Encrypt (https://letsencrypt.org) platform which provides free SSL certificates for everyone to turn on https protocol.
    18  * Version:           1.2.2
     18 * Version:           1.2.3
    1919 * Author:            Open Source Excellence
    2020 * Author URI:        https://www.opensource-excellence.com/
     
    8585    }
    8686    private function getData(){
    87         wp_cache_delete ( 'alloptions', 'options' );
     87        wp_cache_delete ( $this->option_name, 'options' );
    8888        return get_option($this->option_name, array());
    8989    }
  • ose-lets-encrypt/trunk/README.txt

    r1966344 r1966376  
    66Tested up to: 4.9.8
    77Requires PHP: 5.3
    8 Stable tag: 1.2.2
     8Stable tag: 1.2.3
    99License: GNU General Public License v3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.txt
     
    6565
    6666== Changelog ==
     67= 1.2.3
     68* Change clear all option cache to clear ose-lets-encrypt cache data
     69
    6770= 1.2.2
    6871* Fixed bug: token not match caused by options cache
  • ose-lets-encrypt/trunk/ose-letsencrypt.php

    r1966344 r1966376  
    1616 * Plugin URI:        https://www.opensource-excellence.com/
    1717 * Description:       OSE Free SSL is an easy-to-use plugin to create SSL certificates from Let’s Encrypt (https://letsencrypt.org) platform which provides free SSL certificates for everyone to turn on https protocol.
    18  * Version:           1.2.2
     18 * Version:           1.2.3
    1919 * Author:            Open Source Excellence
    2020 * Author URI:        https://www.opensource-excellence.com/
     
    8585    }
    8686    private function getData(){
    87         wp_cache_delete ( 'alloptions', 'options' );
     87        wp_cache_delete ( $this->option_name, 'options' );
    8888        return get_option($this->option_name, array());
    8989    }
Note: See TracChangeset for help on using the changeset viewer.