Plugin Directory

Changeset 3459661


Ignore:
Timestamp:
02/12/2026 08:40:13 AM (7 weeks ago)
Author:
precisionwp
Message:

1.5.4

  • Fixed: Password Protection issue with session.
Location:
adminease/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • adminease/trunk/README.txt

    r3451905 r3459661  
    44Requires at least: 5.0
    55Tested up to: 6.9
    6 Stable tag: 1.5.3
     6Stable tag: 1.5.4
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    187187== Changelog ==
    188188
     189= 1.5.4 =
     190- Fixed: Password Protection issue with session.
     191
    189192= 1.5.3 =
    190193- Fixed: PostsMetadataBox not working properly on new posts.
  • adminease/trunk/adminease.php

    r3451905 r3459661  
    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.5.3
     5 * Version:     1.5.4
    66 * Author:      PrecisionWP
    77 * Author URI:  https://precisionwp.net/
     
    1515
    1616// Plugin constants.
    17 define( 'ADMINEASE_VERSION', '1.5.3' );
     17define( 'ADMINEASE_VERSION', '1.5.4' );
    1818define( 'ADMINEASE_NAME', 'AdminEase' );
    1919define( 'ADMINEASE_SLUG', 'adminease' );
  • adminease/trunk/composer.json

    r3451905 r3459661  
    33    "description": "AdminEase – free version",
    44    "type": "wordpress-plugin",
    5     "version": "1.5.3",
     5    "version": "1.5.4",
    66    "require": {
    77        "php": ">=7.4",
  • adminease/trunk/includes/Features/PasswordProtectSite/PasswordProtectSite.php

    r3451120 r3459661  
    473473     */
    474474    public function authenticate_user( bool $remember_device ): void {
     475        if ( session_status() === PHP_SESSION_NONE ) {
     476            session_start();
     477        }
     478       
    475479        // Set session
    476480        $_SESSION[ $this->session_key ] = [
Note: See TracChangeset for help on using the changeset viewer.