Changeset 2694411
- Timestamp:
- 03/15/2022 06:03:34 PM (4 years ago)
- Location:
- nft-login
- Files:
-
- 3 edited
- 24 copied
-
tags/1.2.2 (copied) (copied from nft-login/trunk)
-
tags/1.2.2/LICENSE.txt (copied) (copied from nft-login/trunk/LICENSE.txt)
-
tags/1.2.2/README.txt (copied) (copied from nft-login/trunk/README.txt) (2 diffs)
-
tags/1.2.2/admin (copied) (copied from nft-login/trunk/admin)
-
tags/1.2.2/admin/class-nft-login-admin.php (copied) (copied from nft-login/trunk/admin/class-nft-login-admin.php)
-
tags/1.2.2/admin/partials/nft-login-admin-display.php (copied) (copied from nft-login/trunk/admin/partials/nft-login-admin-display.php)
-
tags/1.2.2/includes (copied) (copied from nft-login/trunk/includes)
-
tags/1.2.2/includes/class-nft-login-activator.php (copied) (copied from nft-login/trunk/includes/class-nft-login-activator.php)
-
tags/1.2.2/includes/class-nft-login-deactivator.php (copied) (copied from nft-login/trunk/includes/class-nft-login-deactivator.php)
-
tags/1.2.2/includes/class-nft-login-i18n.php (copied) (copied from nft-login/trunk/includes/class-nft-login-i18n.php)
-
tags/1.2.2/includes/class-nft-login-loader.php (copied) (copied from nft-login/trunk/includes/class-nft-login-loader.php)
-
tags/1.2.2/includes/class-nft-login-util.php (copied) (copied from nft-login/trunk/includes/class-nft-login-util.php)
-
tags/1.2.2/includes/class-nft-login.php (copied) (copied from nft-login/trunk/includes/class-nft-login.php)
-
tags/1.2.2/index.php (copied) (copied from nft-login/trunk/index.php)
-
tags/1.2.2/languages (copied) (copied from nft-login/trunk/languages)
-
tags/1.2.2/nft-login.php (copied) (copied from nft-login/trunk/nft-login.php) (2 diffs)
-
tags/1.2.2/public (copied) (copied from nft-login/trunk/public)
-
tags/1.2.2/public/class-nft-login-public.php (copied) (copied from nft-login/trunk/public/class-nft-login-public.php) (1 diff)
-
tags/1.2.2/public/css/nft-login-public.css (copied) (copied from nft-login/trunk/public/css/nft-login-public.css)
-
tags/1.2.2/public/image (copied) (copied from nft-login/trunk/public/image)
-
tags/1.2.2/public/js/nft-login-module.js (copied) (copied from nft-login/trunk/public/js/nft-login-module.js)
-
tags/1.2.2/public/partials/nft-login-public-display.php (copied) (copied from nft-login/trunk/public/partials/nft-login-public-display.php)
-
tags/1.2.2/resources (copied) (copied from nft-login/trunk/resources)
-
tags/1.2.2/uninstall.php (copied) (copied from nft-login/trunk/uninstall.php)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/nft-login.php (modified) (2 diffs)
-
trunk/public/class-nft-login-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nft-login/tags/1.2.2/README.txt
r2694361 r2694411 5 5 Requires at least: 5.0 6 6 Tested up to: 5.9 7 Stable tag: 1.2. 17 Stable tag: 1.2.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 79 79 = 1.2.1 = 80 80 Bug fix missing function 81 82 = 1.2.2 = 83 Php 8 bug fix -
nft-login/tags/1.2.2/nft-login.php
r2694361 r2694411 15 15 * Plugin URI: https://davehagler.github.io/nftlogin/ 16 16 * Description: Login to Wordpress using NFT's 17 * Version: 1.2. 117 * Version: 1.2.2 18 18 * Author: Dave Hagler 19 19 * Requires at least: 5.0 … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'NFT_LOGIN_VERSION', '1.2. 1' );37 define( 'NFT_LOGIN_VERSION', '1.2.2' ); 38 38 39 39 !defined('NFT_LOGIN_PATH') && define('NFT_LOGIN_PATH', plugin_dir_path( __FILE__ )); -
nft-login/tags/1.2.2/public/class-nft-login-public.php
r2689744 r2694411 115 115 public function authenticate( $user, $username, $password) { 116 116 117 $isAdministrator = in_array('administrator', $user->roles); 117 if (isset($user->roles)) { 118 $isAdministrator = in_array('administrator', $user->roles); 119 } 118 120 $isEmptyAddress = empty($_POST['nftlogin_address']) || !empty($_POST['nftlogin_address']) && trim($_POST['nftlogin_address']) == ''; 119 121 $isLoginError = $user instanceof WP_Error; -
nft-login/trunk/README.txt
r2694361 r2694411 5 5 Requires at least: 5.0 6 6 Tested up to: 5.9 7 Stable tag: 1.2. 17 Stable tag: 1.2.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 79 79 = 1.2.1 = 80 80 Bug fix missing function 81 82 = 1.2.2 = 83 Php 8 bug fix -
nft-login/trunk/nft-login.php
r2694361 r2694411 15 15 * Plugin URI: https://davehagler.github.io/nftlogin/ 16 16 * Description: Login to Wordpress using NFT's 17 * Version: 1.2. 117 * Version: 1.2.2 18 18 * Author: Dave Hagler 19 19 * Requires at least: 5.0 … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'NFT_LOGIN_VERSION', '1.2. 1' );37 define( 'NFT_LOGIN_VERSION', '1.2.2' ); 38 38 39 39 !defined('NFT_LOGIN_PATH') && define('NFT_LOGIN_PATH', plugin_dir_path( __FILE__ )); -
nft-login/trunk/public/class-nft-login-public.php
r2689744 r2694411 115 115 public function authenticate( $user, $username, $password) { 116 116 117 $isAdministrator = in_array('administrator', $user->roles); 117 if (isset($user->roles)) { 118 $isAdministrator = in_array('administrator', $user->roles); 119 } 118 120 $isEmptyAddress = empty($_POST['nftlogin_address']) || !empty($_POST['nftlogin_address']) && trim($_POST['nftlogin_address']) == ''; 119 121 $isLoginError = $user instanceof WP_Error;
Note: See TracChangeset
for help on using the changeset viewer.