Changeset 3466453
- Timestamp:
- 02/21/2026 03:25:27 PM (6 weeks ago)
- Location:
- adminease/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
adminease.php (modified) (2 diffs)
-
composer.json (modified) (1 diff)
-
includes/FileHandler.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
adminease/trunk/README.txt
r3466442 r3466453 189 189 == Changelog == 190 190 191 = 1.6.2 = 192 - Fixed: Issue with FileHandler class. 193 191 194 = 1.6.1 = 192 195 - Fixed: Taxonomy Switcher not appearing in dashboard. -
adminease/trunk/adminease.php
r3466442 r3466453 3 3 * Plugin Name: AdminEase 4 4 * Description: Boosts your WordPress admin with tools for updates, security, performance, and user management - no coding required. 5 * Version: 1.6. 15 * Version: 1.6.2 6 6 * Author: PrecisionWP 7 7 * Author URI: https://precisionwp.net/ … … 15 15 16 16 // Plugin constants. 17 define( 'ADMINEASE_VERSION', '1.6. 1' );17 define( 'ADMINEASE_VERSION', '1.6.2' ); 18 18 define( 'ADMINEASE_NAME', 'AdminEase' ); 19 19 define( 'ADMINEASE_SLUG', 'adminease' ); -
adminease/trunk/composer.json
r3466442 r3466453 3 3 "description": "AdminEase – free version", 4 4 "type": "wordpress-plugin", 5 "version": "1.6. 1",5 "version": "1.6.2", 6 6 "require": { 7 7 "php": ">=7.4", -
adminease/trunk/includes/FileHandler.php
r3466438 r3466453 20 20 * @var WP_Filesystem_Base 21 21 */ 22 private WP_Filesystem_Base $filesystem;22 private ?WP_Filesystem_Base $filesystem; 23 23 /** 24 24 * Path to wp-config.php file … … 116 116 global $wp_filesystem; 117 117 118 if( $this->filesystem instanceof WP_Filesystem_Base ) {118 if( isset( $this->filesystem ) && $this->filesystem instanceof WP_Filesystem_Base ) { 119 119 return true; 120 120 }
Note: See TracChangeset
for help on using the changeset viewer.