Plugin Directory

Changeset 3482624


Ignore:
Timestamp:
03/14/2026 04:37:46 PM (2 weeks ago)
Author:
stklcode
Message:

Update to version 1.3.2 from GitHub

Location:
stklcode-liveticker
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • stklcode-liveticker/tags/1.3.2/README.md

    r3345424 r3482624  
    44* Tags:              liveticker, feed, rss
    55* Requires at least: 5.0
    6 * Tested up to:      6.8
     6* Tested up to:      6.9
    77* Requires PHP:      7.2
    8 * Stable tag:        1.3.1
     8* Stable tag:        1.3.2
    99* License:           GPLv2 or later
    1010* License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    7575## Changelog
    7676
     77### 1.3.2 - 2026-03-14
     78
     79* Use wp_doing_ajax() instead of checking for global constants
     80* Tested with WP 6.9
     81
    7782### 1.3.1 - 2025-08-16
    7883
  • stklcode-liveticker/tags/1.3.2/includes/class-scliveticker.php

    r3345424 r3482624  
    2727     * @var string OPTIONS
    2828     */
    29     const VERSION = '1.3.1';
     29    const VERSION = '1.3.2';
    3030
    3131    /**
     
    7777
    7878        // Skip on AJAX if not enabled.
    79         if ( ( ! isset( self::$options['enable_ajax'] ) || 1 !== self::$options['enable_ajax'] ) && ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
     79        if ( ( ! isset( self::$options['enable_ajax'] ) || 1 !== self::$options['enable_ajax'] ) && wp_doing_ajax() ) {
    8080            return;
    8181        }
  • stklcode-liveticker/tags/1.3.2/stklcode-liveticker.php

    r3345424 r3482624  
    1010 * Plugin Name: Liveticker (by stklcode)
    1111 * Description: A simple Liveticker for WordPress.
    12  * Version:     1.3.1
     12 * Version:     1.3.2
    1313 * Author:      Stefan Kalscheuer
    1414 * Author URI:  https://www.stklcode.de
  • stklcode-liveticker/trunk/README.md

    r3345424 r3482624  
    44* Tags:              liveticker, feed, rss
    55* Requires at least: 5.0
    6 * Tested up to:      6.8
     6* Tested up to:      6.9
    77* Requires PHP:      7.2
    8 * Stable tag:        1.3.1
     8* Stable tag:        1.3.2
    99* License:           GPLv2 or later
    1010* License URI:       https://www.gnu.org/licenses/gpl-2.0.html
     
    7575## Changelog
    7676
     77### 1.3.2 - 2026-03-14
     78
     79* Use wp_doing_ajax() instead of checking for global constants
     80* Tested with WP 6.9
     81
    7782### 1.3.1 - 2025-08-16
    7883
  • stklcode-liveticker/trunk/includes/class-scliveticker.php

    r3345424 r3482624  
    2727     * @var string OPTIONS
    2828     */
    29     const VERSION = '1.3.1';
     29    const VERSION = '1.3.2';
    3030
    3131    /**
     
    7777
    7878        // Skip on AJAX if not enabled.
    79         if ( ( ! isset( self::$options['enable_ajax'] ) || 1 !== self::$options['enable_ajax'] ) && ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
     79        if ( ( ! isset( self::$options['enable_ajax'] ) || 1 !== self::$options['enable_ajax'] ) && wp_doing_ajax() ) {
    8080            return;
    8181        }
  • stklcode-liveticker/trunk/stklcode-liveticker.php

    r3345424 r3482624  
    1010 * Plugin Name: Liveticker (by stklcode)
    1111 * Description: A simple Liveticker for WordPress.
    12  * Version:     1.3.1
     12 * Version:     1.3.2
    1313 * Author:      Stefan Kalscheuer
    1414 * Author URI:  https://www.stklcode.de
Note: See TracChangeset for help on using the changeset viewer.