Login With Ajax - Version 2.0.3

Version Description

  • Fixed login_with_ajax function so it echoes correctly.
Download this release

Release Info

Developer netweblogic
Plugin Icon 128x128 Login With Ajax
Version 2.0.3
Comparing to
See all releases

Code changes from version 2.0.2 to 2.0.3

Files changed (2) hide show
  1. login-with-ajax.php +2 -2
  2. readme.txt +5 -2
login-with-ajax.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Login With Ajax
4
  Plugin URI: http://netweblogic.com/wordpress/plugins/login-with-ajax/
5
  Description: Ajax driven login widget. Customisable from within your template folder, and advanced settings from the admin area.
6
  Author: NetWebLogic
7
- Version: 2.0.2
8
  Author URI: http://netweblogic.com/
9
  Tags: Login, Ajax, Redirect, BuddyPress, MU, WPMU, sidebar, admin, widget
10
 
@@ -290,7 +290,7 @@ include_once('login-with-ajax-widget.php');
290
  function login_with_ajax($atts = ''){
291
  global $LoginWithAjax;
292
  $atts = shortcode_parse_atts($atts);
293
- $LoginWithAjax->shortcode($atts);
294
  }
295
 
296
  // Start this plugin once all other plugins are fully loaded
4
  Plugin URI: http://netweblogic.com/wordpress/plugins/login-with-ajax/
5
  Description: Ajax driven login widget. Customisable from within your template folder, and advanced settings from the admin area.
6
  Author: NetWebLogic
7
+ Version: 2.0.3
8
  Author URI: http://netweblogic.com/
9
  Tags: Login, Ajax, Redirect, BuddyPress, MU, WPMU, sidebar, admin, widget
10
 
290
  function login_with_ajax($atts = ''){
291
  global $LoginWithAjax;
292
  $atts = shortcode_parse_atts($atts);
293
+ echo $LoginWithAjax->shortcode($atts);
294
  }
295
 
296
  // Start this plugin once all other plugins are fully loaded
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: netweblogic
3
  Tags: Login, Ajax, Redirect, BuddyPress, MU, WPMU, sidebar, admin, widget
4
  Requires at least: 2.7
5
- Tested up to: 2.8.5
6
- Stable tag: 2.0.2
7
 
8
  Add smooth ajax during login, avoid screen refreshes and choose where users get redirected to upon login/logout. Supports SSL, MU, and BuddyPress.
9
 
@@ -120,3 +120,6 @@ For further questions and answers (or to submit one yourself) go to our [http://
120
 
121
  = 2.0.2 =
122
  * Fixed bad link to profile in default widget_in.php template
 
 
 
2
  Contributors: netweblogic
3
  Tags: Login, Ajax, Redirect, BuddyPress, MU, WPMU, sidebar, admin, widget
4
  Requires at least: 2.7
5
+ Tested up to: 2.8.6
6
+ Stable tag: 2.0.3
7
 
8
  Add smooth ajax during login, avoid screen refreshes and choose where users get redirected to upon login/logout. Supports SSL, MU, and BuddyPress.
9
 
120
 
121
  = 2.0.2 =
122
  * Fixed bad link to profile in default widget_in.php template
123
+
124
+ = 2.0.3 =
125
+ * Fixed login_with_ajax function so it echoes correctly.