Plugin Directory

Changeset 3277756


Ignore:
Timestamp:
04/20/2025 08:28:08 PM (10 months ago)
Author:
5um17
Message:

v1.0.3

Location:
wp-easy-login
Files:
19 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-easy-login/trunk/includes/WP_Easy_Login.php

    r2199129 r3277756  
    7070
    7171        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'));
    7373        add_action('login_form', array($this, 'display_user_list'));
    7474        add_action('login_enqueue_scripts', array($this, 'enqueue_scripts_css'));
     
    7878
    7979    /**
    80      * Load plugin textdomain and setup option variable
     80     * Setup default options.
    8181     * @since 1.0
    8282     */
    8383    public function setup_options() {
    8484        $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' );
    8885    }
    8986   
  • wp-easy-login/trunk/readme.txt

    r3070092 r3277756  
    22Contributors: 5um17, ankit-k-gupta
    33Tags: login, easy login, remember username, recent logins
    4 Requires at least: 4.0
    5 Tested up to: 6.5.2
    6 Stable tag: 1.0.2
     4Requires at least: 4.9
     5Tested up to: 6.8
     6Stable tag: 1.0.3
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5151== Changelog ==
    5252
     53= 1.0.3 - 2025-04-21 =
     54* Fixed issues with WP 6.8
     55
    5356= 1.0.2 - 2024-04-14 =
    5457* Fixed issues with PHP 8.1
  • wp-easy-login/trunk/wp-el.php

    r3070092 r3277756  
    44 * Plugin URI: https://www.secretsofgeeks.com/2019/10/wordpress-login-remember-recent-usernames.html
    55 * Description: WP Easy Login stores the recent logins and makes it easy for you to login by selecting an account.
    6  * Version: 1.0.2
    7  * Requires at least: 4.0
     6 * Version: 1.0.3
     7 * Requires at least: 4.9
    88 * Requires PHP: 7.0
    99 * Author: 5um17
Note: See TracChangeset for help on using the changeset viewer.