Plugin Directory

Changeset 3466453


Ignore:
Timestamp:
02/21/2026 03:25:27 PM (6 weeks ago)
Author:
precisionwp
Message:

1.6.2

  • Fixed: Issue with FileHandler class.
Location:
adminease/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • adminease/trunk/README.txt

    r3466442 r3466453  
    189189== Changelog ==
    190190
     191= 1.6.2 =
     192- Fixed: Issue with FileHandler class.
     193
    191194= 1.6.1 =
    192195- Fixed: Taxonomy Switcher not appearing in dashboard.
  • adminease/trunk/adminease.php

    r3466442 r3466453  
    33 * Plugin Name: AdminEase
    44 * Description: Boosts your WordPress admin with tools for updates, security, performance, and user management - no coding required.
    5  * Version:     1.6.1
     5 * Version:     1.6.2
    66 * Author:      PrecisionWP
    77 * Author URI:  https://precisionwp.net/
     
    1515
    1616// Plugin constants.
    17 define( 'ADMINEASE_VERSION', '1.6.1' );
     17define( 'ADMINEASE_VERSION', '1.6.2' );
    1818define( 'ADMINEASE_NAME', 'AdminEase' );
    1919define( 'ADMINEASE_SLUG', 'adminease' );
  • adminease/trunk/composer.json

    r3466442 r3466453  
    33    "description": "AdminEase – free version",
    44    "type": "wordpress-plugin",
    5     "version": "1.6.1",
     5    "version": "1.6.2",
    66    "require": {
    77        "php": ">=7.4",
  • adminease/trunk/includes/FileHandler.php

    r3466438 r3466453  
    2020     * @var WP_Filesystem_Base
    2121     */
    22     private WP_Filesystem_Base $filesystem;
     22    private ?WP_Filesystem_Base $filesystem;
    2323    /**
    2424     * Path to wp-config.php file
     
    116116        global $wp_filesystem;
    117117       
    118         if( $this->filesystem instanceof WP_Filesystem_Base ) {
     118        if( isset( $this->filesystem ) && $this->filesystem instanceof WP_Filesystem_Base ) {
    119119            return true;
    120120        }
Note: See TracChangeset for help on using the changeset viewer.