Changeset 3482624
- Timestamp:
- 03/14/2026 04:37:46 PM (2 weeks ago)
- Location:
- stklcode-liveticker
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.2 (copied) (copied from stklcode-liveticker/trunk)
-
tags/1.3.2/README.md (modified) (2 diffs)
-
tags/1.3.2/includes/class-scliveticker.php (modified) (2 diffs)
-
tags/1.3.2/stklcode-liveticker.php (modified) (1 diff)
-
trunk/README.md (modified) (2 diffs)
-
trunk/includes/class-scliveticker.php (modified) (2 diffs)
-
trunk/stklcode-liveticker.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
stklcode-liveticker/tags/1.3.2/README.md
r3345424 r3482624 4 4 * Tags: liveticker, feed, rss 5 5 * Requires at least: 5.0 6 * Tested up to: 6. 86 * Tested up to: 6.9 7 7 * Requires PHP: 7.2 8 * Stable tag: 1.3. 18 * Stable tag: 1.3.2 9 9 * License: GPLv2 or later 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 75 75 ## Changelog 76 76 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 77 82 ### 1.3.1 - 2025-08-16 78 83 -
stklcode-liveticker/tags/1.3.2/includes/class-scliveticker.php
r3345424 r3482624 27 27 * @var string OPTIONS 28 28 */ 29 const VERSION = '1.3. 1';29 const VERSION = '1.3.2'; 30 30 31 31 /** … … 77 77 78 78 // 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() ) { 80 80 return; 81 81 } -
stklcode-liveticker/tags/1.3.2/stklcode-liveticker.php
r3345424 r3482624 10 10 * Plugin Name: Liveticker (by stklcode) 11 11 * Description: A simple Liveticker for WordPress. 12 * Version: 1.3. 112 * Version: 1.3.2 13 13 * Author: Stefan Kalscheuer 14 14 * Author URI: https://www.stklcode.de -
stklcode-liveticker/trunk/README.md
r3345424 r3482624 4 4 * Tags: liveticker, feed, rss 5 5 * Requires at least: 5.0 6 * Tested up to: 6. 86 * Tested up to: 6.9 7 7 * Requires PHP: 7.2 8 * Stable tag: 1.3. 18 * Stable tag: 1.3.2 9 9 * License: GPLv2 or later 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 75 75 ## Changelog 76 76 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 77 82 ### 1.3.1 - 2025-08-16 78 83 -
stklcode-liveticker/trunk/includes/class-scliveticker.php
r3345424 r3482624 27 27 * @var string OPTIONS 28 28 */ 29 const VERSION = '1.3. 1';29 const VERSION = '1.3.2'; 30 30 31 31 /** … … 77 77 78 78 // 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() ) { 80 80 return; 81 81 } -
stklcode-liveticker/trunk/stklcode-liveticker.php
r3345424 r3482624 10 10 * Plugin Name: Liveticker (by stklcode) 11 11 * Description: A simple Liveticker for WordPress. 12 * Version: 1.3. 112 * Version: 1.3.2 13 13 * Author: Stefan Kalscheuer 14 14 * Author URI: https://www.stklcode.de
Note: See TracChangeset
for help on using the changeset viewer.