Changeset 3277756
- Timestamp:
- 04/20/2025 08:28:08 PM (10 months ago)
- Location:
- wp-easy-login
- Files:
-
- 19 added
- 3 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/admin (added)
-
tags/1.0.3/admin/WP_Easy_Admin.php (added)
-
tags/1.0.3/assets (added)
-
tags/1.0.3/assets/css (added)
-
tags/1.0.3/assets/css/wp-el-css.css (added)
-
tags/1.0.3/assets/css/wp-el-css.min.css (added)
-
tags/1.0.3/assets/js (added)
-
tags/1.0.3/assets/js/modernAlert.js (added)
-
tags/1.0.3/assets/js/modernAlert.min.js (added)
-
tags/1.0.3/assets/js/wp-el.js (added)
-
tags/1.0.3/assets/js/wp-el.min.js (added)
-
tags/1.0.3/includes (added)
-
tags/1.0.3/includes/WP_Easy_Login.php (added)
-
tags/1.0.3/includes/wp-el-browser.php (added)
-
tags/1.0.3/languages (added)
-
tags/1.0.3/languages/wp-easy-login.pot (added)
-
tags/1.0.3/readme.txt (added)
-
tags/1.0.3/wp-el.php (added)
-
trunk/includes/WP_Easy_Login.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-el.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-easy-login/trunk/includes/WP_Easy_Login.php
r2199129 r3277756 70 70 71 71 add_action('wp_login', array($this, 'set_cookie')); 72 add_action(' plugins_loaded', array($this, 'setup_options'), 99);72 add_action('init', array($this, 'setup_options')); 73 73 add_action('login_form', array($this, 'display_user_list')); 74 74 add_action('login_enqueue_scripts', array($this, 'enqueue_scripts_css')); … … 78 78 79 79 /** 80 * Load plugin textdomain and setup option variable80 * Setup default options. 81 81 * @since 1.0 82 82 */ 83 83 public function setup_options() { 84 84 $this->options = $this->get_options(); 85 86 // Load plugin text domain. We can enhance it later if needed.87 load_plugin_textdomain( 'wp-easy-login', false, dirname( plugin_basename( WP_EASY_LOGIN_DIR . 'WP_Easy_Login.php' ) ) . '/languages' );88 85 } 89 86 -
wp-easy-login/trunk/readme.txt
r3070092 r3277756 2 2 Contributors: 5um17, ankit-k-gupta 3 3 Tags: login, easy login, remember username, recent logins 4 Requires at least: 4. 05 Tested up to: 6. 5.26 Stable tag: 1.0. 24 Requires at least: 4.9 5 Tested up to: 6.8 6 Stable tag: 1.0.3 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 51 51 == Changelog == 52 52 53 = 1.0.3 - 2025-04-21 = 54 * Fixed issues with WP 6.8 55 53 56 = 1.0.2 - 2024-04-14 = 54 57 * Fixed issues with PHP 8.1 -
wp-easy-login/trunk/wp-el.php
r3070092 r3277756 4 4 * Plugin URI: https://www.secretsofgeeks.com/2019/10/wordpress-login-remember-recent-usernames.html 5 5 * Description: WP Easy Login stores the recent logins and makes it easy for you to login by selecting an account. 6 * Version: 1.0. 27 * Requires at least: 4. 06 * Version: 1.0.3 7 * Requires at least: 4.9 8 8 * Requires PHP: 7.0 9 9 * Author: 5um17
Note: See TracChangeset
for help on using the changeset viewer.