Changeset 3220519
- Timestamp:
- 01/11/2025 03:54:42 AM (15 months ago)
- Location:
- wp-useronline/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-useronline.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-useronline/trunk/readme.txt
r3211344 r3220519 5 5 Requires at least: 4.6 6 6 Tested up to: 6.7 7 Stable tag: 2.88. 87 Stable tag: 2.88.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 86 86 87 87 ## Changelog 88 ### 2.88.9 89 * FIXED: Check scbWidget exists first before loading scbWidget. Props @whiteshadow. 90 88 91 ### 2.88.8 89 92 * FIXED: Remove widget code from useronline_init -
wp-useronline/trunk/wp-useronline.php
r3211344 r3220519 4 4 Plugin URI: https://lesterchan.net/portfolio/programming/php/ 5 5 Description: Enable you to display how many users are online on your Wordpress site 6 Version: 2.88. 86 Version: 2.88.9 7 7 Author: Lester 'GaMerZ' Chan 8 8 Author URI: https://lesterchan.net … … 94 94 add_action( 'plugins_loaded', 'useronline_init_widget' ); 95 95 function useronline_init_widget() { 96 require_once __DIR__ . '/scb/Widget.php'; 96 if ( ! class_exists( 'scbWidget', false ) ) { 97 require_once __DIR__ . '/scb/Widget.php'; 98 } 97 99 require_once __DIR__ . '/widget.php'; 98 100 scbWidget::init( 'UserOnline_Widget', __FILE__, 'useronline' );
Note: See TracChangeset
for help on using the changeset viewer.