Plugin Directory

Changeset 3317309


Ignore:
Timestamp:
06/25/2025 03:43:59 AM (9 months ago)
Author:
rpetersen29
Message:

v3.0.9

Location:
simple-banner
Files:
2 edited
10 copied

Legend:

Unmodified
Added
Removed
  • simple-banner/tags/3.0.9/readme.txt

    r3311191 r3317309  
    55Requires at least: 3.0.1
    66Tested up to: 6.8.1
    7 Stable tag: 3.0.8
     7Stable tag: 3.0.9
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    100100== Changelog ==
    101101
     102= 3.0.9 =
     103* Bug fixes
     104
    102105= 3.0.8 =
    103106* Test against wp 6.8.1, style changes
     
    370373== Upgrade Notice ==
    371374
     375= 3.0.9 =
     376* Bug fixes
     377
    372378= 3.0.8 =
    373379* Test against wp 6.8.1, style changes
  • simple-banner/tags/3.0.9/simple-banner.php

    r3311191 r3317309  
    44 * Plugin URI: https://github.com/rpetersen29/simple-banner
    55 * Description: Display a simple banner at the top or bottom of your website. Now with multi-banner support
    6  * Version: 3.0.8
     6 * Version: 3.0.9
    77 * Author: Ryan Petersen
    88 * Author URI: http://rpetersen29.github.io/
     
    1010 *
    1111 * @package Simple Banner
    12  * @version 3.0.8
     12 * @version 3.0.9
    1313 * @author Ryan Petersen <rpetersen.dev@gmail.com>
    1414 */
    15 define ('SB_VERSION', '3.0.8');
     15define ('SB_VERSION', '3.0.9');
    1616
    1717register_activation_hook( __FILE__, 'simple_banner_activate' );
     
    10801080
    10811081function clearLiteSpeedCache() {
    1082     if (class_exists("LiteSpeed_Cache_API") && method_exists("autoptimizeCache", "purge_all")) {
     1082    if (class_exists("LiteSpeed_Cache_API") && method_exists("LiteSpeed_Cache_API", "purge_all")) {
    10831083        LiteSpeed_Cache_API::purge_all();
    10841084    }
  • simple-banner/trunk/readme.txt

    r3311191 r3317309  
    55Requires at least: 3.0.1
    66Tested up to: 6.8.1
    7 Stable tag: 3.0.8
     7Stable tag: 3.0.9
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    100100== Changelog ==
    101101
     102= 3.0.9 =
     103* Bug fixes
     104
    102105= 3.0.8 =
    103106* Test against wp 6.8.1, style changes
     
    370373== Upgrade Notice ==
    371374
     375= 3.0.9 =
     376* Bug fixes
     377
    372378= 3.0.8 =
    373379* Test against wp 6.8.1, style changes
  • simple-banner/trunk/simple-banner.php

    r3311191 r3317309  
    44 * Plugin URI: https://github.com/rpetersen29/simple-banner
    55 * Description: Display a simple banner at the top or bottom of your website. Now with multi-banner support
    6  * Version: 3.0.8
     6 * Version: 3.0.9
    77 * Author: Ryan Petersen
    88 * Author URI: http://rpetersen29.github.io/
     
    1010 *
    1111 * @package Simple Banner
    12  * @version 3.0.8
     12 * @version 3.0.9
    1313 * @author Ryan Petersen <rpetersen.dev@gmail.com>
    1414 */
    15 define ('SB_VERSION', '3.0.8');
     15define ('SB_VERSION', '3.0.9');
    1616
    1717register_activation_hook( __FILE__, 'simple_banner_activate' );
     
    10801080
    10811081function clearLiteSpeedCache() {
    1082     if (class_exists("LiteSpeed_Cache_API") && method_exists("autoptimizeCache", "purge_all")) {
     1082    if (class_exists("LiteSpeed_Cache_API") && method_exists("LiteSpeed_Cache_API", "purge_all")) {
    10831083        LiteSpeed_Cache_API::purge_all();
    10841084    }
Note: See TracChangeset for help on using the changeset viewer.