Changeset 3346791
- Timestamp:
- 08/19/2025 06:54:12 AM (7 months ago)
- Location:
- admin-optimizer/trunk
- Files:
-
- 4 edited
-
admin-optimizer.php (modified) (1 diff)
-
modules/2fa/two-factor-authentication.php (modified) (2 diffs)
-
modules/settings/users-management/users-management.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-optimizer/trunk/admin-optimizer.php
r3345058 r3346791 4 4 * Plugin URI: https://www.yipresser.com 5 5 * Description: An all-in-one plugin to enhance your WordPress sites 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Requires PHP: 7.2.5 8 8 * Author: Yipresser -
admin-optimizer/trunk/modules/2fa/two-factor-authentication.php
r3343907 r3346791 95 95 */ 96 96 public function maybe_add_2fa_login_page( $user_login, $user ) { 97 if ( isset( $user->adminoptim_twofa_validated ) && $user->adminoptim_twofa_validated ) { 98 return; 99 } 100 97 101 if ( ! $this->is_login_page() ) { 98 102 return; … … 183 187 184 188 do_action( 'adminoptim_2fa_after_verification', $user ); 189 190 $user->adminoptim_twofa_validated = true; 191 192 do_action( 'wp_login', $user->user_login, $user ); 185 193 186 194 // Must be global because that's how login_header() uses it. -
admin-optimizer/trunk/modules/settings/users-management/users-management.php
r3343907 r3346791 105 105 [ 106 106 'type' => 'slider-checkbox', 107 'title' => __( 'Track User last login date', 'admin-optimizer' ),107 'title' => __( 'Track User\'s last login date', 'admin-optimizer' ), 108 108 'id' => 'enable-user-login-tracking', 109 109 'name' => 'enable_user_login_tracking', … … 138 138 * @return void 139 139 */ 140 public staticfunction user_last_login( $user_login, $user ) {140 public function user_last_login( $user_login, $user ) { 141 141 update_user_meta( $user->ID, 'last_login', time() ); 142 142 } -
admin-optimizer/trunk/readme.txt
r3345058 r3346791 7 7 Requires PHP: 7.2.5 8 8 Tested up to: 6.8 9 Stable tag: 1.0. 29 Stable tag: 1.0.3 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 101 101 == Changelog == 102 102 103 = 1.0.3 - 15 August 2025 = 104 * Bug fixes: fixed 2fa conflicts with last login date. 105 103 106 = 1.0.2 - 15 August 2025 = 104 105 107 * Minor bug fixes: fixed spelling error 106 108 107 109 = 1.0.1 - 13 August 2025 = 108 109 110 * Minor bug fixes, security compliant fixes and first release to WP Plugin Directory 110 111 111 112 = 1.0.0 - 25 June 2025 = 112 113 113 * First release 114 114
Note: See TracChangeset
for help on using the changeset viewer.