Changeset 3459661
- Timestamp:
- 02/12/2026 08:40:13 AM (7 weeks ago)
- Location:
- adminease/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
adminease.php (modified) (2 diffs)
-
composer.json (modified) (1 diff)
-
includes/Features/PasswordProtectSite/PasswordProtectSite.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
adminease/trunk/README.txt
r3451905 r3459661 4 4 Requires at least: 5.0 5 5 Tested up to: 6.9 6 Stable tag: 1.5. 36 Stable tag: 1.5.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 187 187 == Changelog == 188 188 189 = 1.5.4 = 190 - Fixed: Password Protection issue with session. 191 189 192 = 1.5.3 = 190 193 - Fixed: PostsMetadataBox not working properly on new posts. -
adminease/trunk/adminease.php
r3451905 r3459661 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.5. 35 * Version: 1.5.4 6 6 * Author: PrecisionWP 7 7 * Author URI: https://precisionwp.net/ … … 15 15 16 16 // Plugin constants. 17 define( 'ADMINEASE_VERSION', '1.5. 3' );17 define( 'ADMINEASE_VERSION', '1.5.4' ); 18 18 define( 'ADMINEASE_NAME', 'AdminEase' ); 19 19 define( 'ADMINEASE_SLUG', 'adminease' ); -
adminease/trunk/composer.json
r3451905 r3459661 3 3 "description": "AdminEase – free version", 4 4 "type": "wordpress-plugin", 5 "version": "1.5. 3",5 "version": "1.5.4", 6 6 "require": { 7 7 "php": ">=7.4", -
adminease/trunk/includes/Features/PasswordProtectSite/PasswordProtectSite.php
r3451120 r3459661 473 473 */ 474 474 public function authenticate_user( bool $remember_device ): void { 475 if ( session_status() === PHP_SESSION_NONE ) { 476 session_start(); 477 } 478 475 479 // Set session 476 480 $_SESSION[ $this->session_key ] = [
Note: See TracChangeset
for help on using the changeset viewer.