Sidebar Login - Version 2.7.1

Version Description

  • Make rememberme show by default, without a widget save.
Download this release

Release Info

Developer mikejolley
Plugin Icon 128x128 Sidebar Login
Version 2.7.1
Comparing to
See all releases

Code changes from version 2.7.0 to 2.7.1

includes/class-sidebar-login-widget.php CHANGED
@@ -284,7 +284,7 @@ class Sidebar_Login_Widget extends WP_Widget {
284
  do_action( 'sidebar_login_widget_logged_out_content_start' );
285
 
286
  $redirect = empty( $instance['login_redirect_url'] ) ? $this->current_url( 'nologout' ) : $instance['login_redirect_url'];
287
- $show_rememberme = ! empty( $this->instance['show_rememberme'] );
288
 
289
  $login_form_args = apply_filters( 'sidebar_login_widget_form_args', array(
290
  'echo' => true,
284
  do_action( 'sidebar_login_widget_logged_out_content_start' );
285
 
286
  $redirect = empty( $instance['login_redirect_url'] ) ? $this->current_url( 'nologout' ) : $instance['login_redirect_url'];
287
+ $show_rememberme = ! isset( $this->instance['show_rememberme'] ) || ! empty( $this->instance['show_rememberme'] );
288
 
289
  $login_form_args = apply_filters( 'sidebar_login_widget_form_args', array(
290
  'echo' => true,
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: mikejolley
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jolley@me.com&currency_code=&amount=&return=&item_name=Donation+for+Sidebar+Login
4
  Tags: login, sidebar, widget, sidebar login, meta, form, register
5
  Requires at least: 3.0
6
- Tested up to: 3.9
7
- Stable tag: 2.7.0
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -74,6 +74,9 @@ These tags can be used in the widget settings for titles + links and will be rep
74
 
75
  == Changelog ==
76
 
 
 
 
77
  = 2.7.0 =
78
  * Renamed textdomain from sidebar_login to sidebar-login.
79
  * Moved translations to Transifex.
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jolley@me.com&currency_code=&amount=&return=&item_name=Donation+for+Sidebar+Login
4
  Tags: login, sidebar, widget, sidebar login, meta, form, register
5
  Requires at least: 3.0
6
+ Tested up to: 4.0
7
+ Stable tag: 2.7.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
74
 
75
  == Changelog ==
76
 
77
+ = 2.7.1 =
78
+ * Make rememberme show by default, without a widget save.
79
+
80
  = 2.7.0 =
81
  * Renamed textdomain from sidebar_login to sidebar-login.
82
  * Moved translations to Transifex.
sidebar-login.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Sidebar Login
4
  Plugin URI: http://wordpress.org/extend/plugins/sidebar-login/
5
  Description: Allows you to easily add an ajax-enhanced login widget to the sidebar on your WordPress site.
6
- Version: 2.7.0
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.5
@@ -19,7 +19,7 @@ Tested up to: 3.9
19
  */
20
  class Sidebar_Login {
21
 
22
- private $version = '2.7.0';
23
 
24
  /**
25
  * __construct function.
3
  Plugin Name: Sidebar Login
4
  Plugin URI: http://wordpress.org/extend/plugins/sidebar-login/
5
  Description: Allows you to easily add an ajax-enhanced login widget to the sidebar on your WordPress site.
6
+ Version: 2.7.1
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.5
19
  */
20
  class Sidebar_Login {
21
 
22
+ private $version = '2.7.1';
23
 
24
  /**
25
  * __construct function.