Plugin Directory

Changeset 2678608


Ignore:
Timestamp:
02/14/2022 04:52:38 PM (4 years ago)
Author:
dave123
Message:

version 1.1.1

Location:
nft-login
Files:
3 edited
22 copied

Legend:

Unmodified
Added
Removed
  • nft-login/tags/1.1.1/README.txt

    r2675999 r2678608  
    44Tags: login,authentication,web3,nft
    55Requires at least: 5.0
    6 Tested up to: 5.8
    7 Stable tag: 1.1.0
     6Tested up to: 5.9
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7070Content locking
    7171Configuration option for registration and login
     72
     73= 1.1.1 =
     74Fix bug in configuration for registration and login
  • nft-login/tags/1.1.1/includes/class-nft-login.php

    r2675969 r2678608  
    186186        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
    187187        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
    188 
    189         if (get_option( $this->option_name . '_reg_login' ) == 'enabled') {
     188        $this->loader->add_action( 'login_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
     189
     190        if (get_option( 'nft_login_setting_reg_login' ) == 'enabled') {
    190191            // registration hooks
    191192            $this->loader->add_action('register_form', $plugin_public, 'register_form');
  • nft-login/tags/1.1.1/nft-login.php

    r2675981 r2678608  
    1515 * Plugin URI:        https://davehagler.github.io/nftlogin/
    1616 * Description:       Login to Wordpress using NFT's
    17  * Version:           1.1.0
     17 * Version:           1.1.1
    1818 * Author:            Dave Hagler
    1919 * Requires at least: 5.0
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define( 'NFT_LOGIN_VERSION', '1.1.0' );
     37define( 'NFT_LOGIN_VERSION', '1.1.1' );
    3838
    3939!defined('NFT_LOGIN_PATH') && define('NFT_LOGIN_PATH', plugin_dir_path( __FILE__ ));
  • nft-login/trunk/README.txt

    r2675999 r2678608  
    44Tags: login,authentication,web3,nft
    55Requires at least: 5.0
    6 Tested up to: 5.8
    7 Stable tag: 1.1.0
     6Tested up to: 5.9
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7070Content locking
    7171Configuration option for registration and login
     72
     73= 1.1.1 =
     74Fix bug in configuration for registration and login
  • nft-login/trunk/includes/class-nft-login.php

    r2675969 r2678608  
    186186        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
    187187        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
    188 
    189         if (get_option( $this->option_name . '_reg_login' ) == 'enabled') {
     188        $this->loader->add_action( 'login_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
     189
     190        if (get_option( 'nft_login_setting_reg_login' ) == 'enabled') {
    190191            // registration hooks
    191192            $this->loader->add_action('register_form', $plugin_public, 'register_form');
  • nft-login/trunk/nft-login.php

    r2675981 r2678608  
    1515 * Plugin URI:        https://davehagler.github.io/nftlogin/
    1616 * Description:       Login to Wordpress using NFT's
    17  * Version:           1.1.0
     17 * Version:           1.1.1
    1818 * Author:            Dave Hagler
    1919 * Requires at least: 5.0
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define( 'NFT_LOGIN_VERSION', '1.1.0' );
     37define( 'NFT_LOGIN_VERSION', '1.1.1' );
    3838
    3939!defined('NFT_LOGIN_PATH') && define('NFT_LOGIN_PATH', plugin_dir_path( __FILE__ ));
Note: See TracChangeset for help on using the changeset viewer.