Temporary Login Without Password - Version 1.5.4

Version Description

Download this release

Release Info

Developer storeapps
Plugin Icon 128x128 Temporary Login Without Password
Version 1.5.4
Comparing to
See all releases

Code changes from version 1.5.3 to 1.5.4

admin/class-wp-temporary-login-without-password-admin.php CHANGED
@@ -553,7 +553,7 @@ class Wp_Temporary_Login_Without_Password_Admin {
553
  $temporary_logins = Wp_Temporary_Login_Without_Password_Common::get_temporary_logins();
554
  $total_logins = count( $temporary_logins );
555
 
556
- if ( $tlwp_nobug || $tlwp_rated || $tlwp_rated_header || ( $total_logins < 3 ) ) {
557
  return false;
558
  }
559
 
553
  $temporary_logins = Wp_Temporary_Login_Without_Password_Common::get_temporary_logins();
554
  $total_logins = count( $temporary_logins );
555
 
556
+ if ( $tlwp_nobug || $tlwp_rated || $tlwp_rated_header || ( $total_logins < 1 ) ) {
557
  return false;
558
  }
559
 
includes/class-wp-temporary-login-without-password-common.php CHANGED
@@ -286,9 +286,6 @@ class Wp_Temporary_Login_Without_Password_Common {
286
  $users = new WP_User_Query( $args );
287
 
288
  $users_data = $users->get_results();
289
- if ( ! ( $users_data ) ) {
290
- return false;
291
- }
292
 
293
  return $users_data;
294
 
286
  $users = new WP_User_Query( $args );
287
 
288
  $users_data = $users->get_results();
 
 
 
289
 
290
  return $users_data;
291
 
includes/class-wp-temporary-login-without-password.php CHANGED
@@ -9,7 +9,7 @@ class Wp_Temporary_Login_Without_Password {
9
  public function __construct() {
10
 
11
  $this->plugin_name = 'temporary-login-without-password';
12
- $this->version = '1.5.3';
13
 
14
  $this->load_dependencies();
15
  $this->set_locale();
9
  public function __construct() {
10
 
11
  $this->plugin_name = 'temporary-login-without-password';
12
+ $this->version = WTLWP_PLUGIN_VERSION;
13
 
14
  $this->load_dependencies();
15
  $this->set_locale();
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Temporary Login Without Password ===
2
  Contributors: storeapps, niravmehta, malayladu
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
4
- Tags: admin login, custom login, customer access, customer login, secure login, access, admin, log in, login, login security, protection, user login, user login, wordpress admin login, wordpress login, wp-admin, wp-login, expiration, login, Login Without Password, temporary login, user, WordPress Admin, wp-admin, developer account, developer login, developer account, passwordless login, password less login
5
  Requires at least: 3.0.1
6
- Tested up to: 4.9.2
7
- Stable tag: 1.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -43,6 +43,10 @@ If you like Temporary Login Without Password, please leave a five star review on
43
 
44
  == Changelog ==
45
 
 
 
 
 
46
  **1.5.3 [02-06-2018]**
47
 
48
  * Added: Now, admin can change the role and expiry of temporary login
1
  === Temporary Login Without Password ===
2
  Contributors: storeapps, niravmehta, malayladu
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
4
+ Tags: admin login, passwordless login, customer access, customer login, secure login, access, admin, log in, login, login security, protection, user login, user login, wordpress admin login, wordpress login, wp-admin, wp-login, expiration, login, Login Without Password, temporary login, user, WordPress Admin, wp-admin, developer account, developer login, developer account, password less login
5
  Requires at least: 3.0.1
6
+ Tested up to: 4.9.4
7
+ Stable tag: 1.5.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
43
 
44
  == Changelog ==
45
 
46
+ **1.5.4 [02-20-2018]**
47
+
48
+ * Fixed: Invalid argument supplied for foreach() PHP Warning in class-wp-temporary-login-without-password-deactivator.php
49
+
50
  **1.5.3 [02-06-2018]**
51
 
52
  * Added: Now, admin can change the role and expiry of temporary login
temporary-login-without-password.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: Temporary Login Without Password
4
  * Plugin URI: http://www.storeapps.org/create-secure-login-without-password-for-wordpress/
5
  * Description: Create a temporary login link with any role using which one can access to your sytem without username and password for limited period of time.
6
- * Version: 1.5.3
7
  * Author: StoreApps
8
  * Author URI: http://storeapps.org
9
  * Requires at least: 3.3
10
- * Tested up to: 4.9.2
11
  * License: GPL-2.0+
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
13
  * Text Domain: temporary-login-without-password
@@ -24,6 +24,7 @@ if ( ! defined( 'WPINC' ) ) {
24
  * Define constants
25
  */
26
  define( 'WTLWP_PLUGIN_DIR', dirname( __FILE__ ) );
 
27
 
28
  /**
29
  * Deactivate Temporary Login Without Password
3
  * Plugin Name: Temporary Login Without Password
4
  * Plugin URI: http://www.storeapps.org/create-secure-login-without-password-for-wordpress/
5
  * Description: Create a temporary login link with any role using which one can access to your sytem without username and password for limited period of time.
6
+ * Version: 1.5.4
7
  * Author: StoreApps
8
  * Author URI: http://storeapps.org
9
  * Requires at least: 3.3
10
+ * Tested up to: 4.9.4
11
  * License: GPL-2.0+
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
13
  * Text Domain: temporary-login-without-password
24
  * Define constants
25
  */
26
  define( 'WTLWP_PLUGIN_DIR', dirname( __FILE__ ) );
27
+ define( 'WTLWP_PLUGIN_VERSION', '1.5.4');
28
 
29
  /**
30
  * Deactivate Temporary Login Without Password