Changeset 3208310
- Timestamp:
- 12/16/2024 03:24:47 AM (3 months ago)
- Location:
- wp-pagenavi/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-pagenavi/trunk/readme.txt
r3195864 r3208310 5 5 Requires at least: 4.6 6 6 Tested up to: 6.7 7 Stable tag: 2.94. 37 Stable tag: 2.94.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 145 145 146 146 ## Changelog 147 ### 2.94.4 148 * FIXED: Revert WP SCB Framework to use plugins_loaded hook 149 147 150 ### 2.94.3 148 151 * FIXED: Update WP SCB Framework to fix load_textdomain_just_in_time warning -
wp-pagenavi/trunk/scb/load.php
r3195864 r3208310 40 40 } 41 41 42 if ( did_action( ' init' ) ) {42 if ( did_action( 'plugins_loaded' ) ) { 43 43 self::load(); 44 44 } else { 45 add_action( ' init', array( __CLASS__, 'load' ), 9, 0 );45 add_action( 'plugins_loaded', array( __CLASS__, 'load' ), 9, 0 ); 46 46 } 47 47 } -
wp-pagenavi/trunk/wp-pagenavi.php
r3195864 r3208310 4 4 Plugin URI: https://lesterchan.net/portfolio/programming/php/ 5 5 Description: Adds a more advanced paging navigation to your WordPress blog 6 Version: 2.94. 36 Version: 2.94.4 7 7 Author: Lester 'GaMerZ' Chan 8 8 Author URI: https://lesterchan.net
Note: See TracChangeset
for help on using the changeset viewer.