Login With Ajax - Version 2.0.4

Version Description

Download this release

Release Info

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

Code changes from version 2.0.3 to 2.0.4

Files changed (2) hide show
  1. login-with-ajax-admin.php +2 -2
  2. readme.txt +7 -4
login-with-ajax-admin.php CHANGED
@@ -99,7 +99,7 @@ class LoginWithAjaxAdmin{
99
  <label>Global Login Redirect</label>
100
  </td>
101
  <td>
102
- <input type="text" name="lwa_login_redirect" value='<?= $lwa_data['login_redirect'] ?>' class='wide' />
103
  <i>If you'd like to send the user to a specific URL after login, enter it here (e.g. http://wordpress.org/)</i>
104
  </td>
105
  </tr>
@@ -108,7 +108,7 @@ class LoginWithAjaxAdmin{
108
  <label>Global Logout Redirect</label>
109
  </td>
110
  <td>
111
- <input type="text" name="lwa_logout_redirect" value='<?= $lwa_data['logout_redirect'] ?>' class='wide' />
112
  <i>If you'd like to send the user to a specific URL after logout, enter it here (e.g. http://wordpress.org/)</i>
113
  </td>
114
  </tr>
99
  <label>Global Login Redirect</label>
100
  </td>
101
  <td>
102
+ <input type="text" name="lwa_login_redirect" value='<?php echo $lwa_data['login_redirect'] ?>' class='wide' />
103
  <i>If you'd like to send the user to a specific URL after login, enter it here (e.g. http://wordpress.org/)</i>
104
  </td>
105
  </tr>
108
  <label>Global Logout Redirect</label>
109
  </td>
110
  <td>
111
+ <input type="text" name="lwa_logout_redirect" value='<?php echo $lwa_data['logout_redirect'] ?>' class='wide' />
112
  <i>If you'd like to send the user to a specific URL after logout, enter it here (e.g. http://wordpress.org/)</i>
113
  </td>
114
  </tr>
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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
 
@@ -24,7 +24,7 @@ Some of the features:
24
  * Fallback mechanism, will still work on javascript-disabled browsers
25
  * Widget specific option to show link to profile page
26
 
27
- If you have any problems with the plugins, please visit our [http://netweblogic.com/forums/](support forums) for further information and provide some feedback first, we may be able to help. It's considered rude to just give low ratings and nothing reason for doing so.
28
 
29
  If you find this plugin useful and would like to say thanks, a link, digg, or some other form of recognition to the plugin page on our blog would be appreciated.
30
 
@@ -53,7 +53,7 @@ When creating customized themes for your widget, there are a few points to consi
53
  * If you have a child theme, you can place the customizations in the child or parent folder (you should probably want to put it in the child folder).
54
  * If you want to customize the login-with-ajax.js javascript, you can also copy that into the same folder above (/yourthemepath/plugins/login-with-ajax/).
55
  * Unless you change the javascript, make sure you wrap your widget with an element with id="login-with-ajax" or "LoginWithAjax". If you use the $before_widget ... variables, this should be done automatically depending on your theme. I recommend you just wrap a div with id="LoginWithAjax" for fuller compatability across themes.
56
- * To force SSL, see [http://codex.wordpress.org/Administration_Over_SSL]("this page"). The plugin will automatically detect the wordpress settings.
57
 
58
  = Important information if upgrading from 1.2 and you have a customized widget =
59
 
@@ -80,7 +80,7 @@ Yes, see the notes section.
80
  = Do you have a shortcode or template tag? =
81
  Yes, see the notes section.
82
 
83
- For further questions and answers (or to submit one yourself) go to our [http://netweblogic.com/forums/](support forums).
84
 
85
 
86
  == Changelog ==
@@ -123,3 +123,6 @@ For further questions and answers (or to submit one yourself) go to our [http://
123
 
124
  = 2.0.3 =
125
  * Fixed login_with_ajax function so it echoes correctly.
 
 
 
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.4
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
 
24
  * Fallback mechanism, will still work on javascript-disabled browsers
25
  * Widget specific option to show link to profile page
26
 
27
+ If you have any problems with the plugins, please visit our [support forums](http://netweblogic.com/forums/) for further information and provide some feedback first, we may be able to help. It's considered rude to just give low ratings and nothing reason for doing so.
28
 
29
  If you find this plugin useful and would like to say thanks, a link, digg, or some other form of recognition to the plugin page on our blog would be appreciated.
30
 
53
  * If you have a child theme, you can place the customizations in the child or parent folder (you should probably want to put it in the child folder).
54
  * If you want to customize the login-with-ajax.js javascript, you can also copy that into the same folder above (/yourthemepath/plugins/login-with-ajax/).
55
  * Unless you change the javascript, make sure you wrap your widget with an element with id="login-with-ajax" or "LoginWithAjax". If you use the $before_widget ... variables, this should be done automatically depending on your theme. I recommend you just wrap a div with id="LoginWithAjax" for fuller compatability across themes.
56
+ * To force SSL, see [this page](http://codex.wordpress.org/Administration_Over_SSL). The plugin will automatically detect the wordpress settings.
57
 
58
  = Important information if upgrading from 1.2 and you have a customized widget =
59
 
80
  = Do you have a shortcode or template tag? =
81
  Yes, see the notes section.
82
 
83
+ For further questions and answers (or to submit one yourself) go to our [support forums](http://netweblogic.com/forums/).
84
 
85
 
86
  == Changelog ==
123
 
124
  = 2.0.3 =
125
  * Fixed login_with_ajax function so it echoes correctly.
126
+
127
+ = 2.0.3 =
128
+ * Changed short opening tag