Theme My Login - Version 2.0.4

Version Description

Download this release

Release Info

Developer jfarthing84
Plugin Icon 128x128 Theme My Login
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. readme.txt +3 -2
  2. theme-my-login.php +8 -1
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://webdesign.jaedub.com
4
  Tags: wordpress, login, register, theme, form, james kelly
5
  Requires at least: 2.5
6
  Tested up to: 2.7.1
7
- Stable tag: 2.0.3
8
 
9
  This plugin themes the WordPress login, register, forgot password and profile pages to look like the rest of your website.
10
 
@@ -56,4 +56,5 @@ Now you can save your changes and go test out your new themed login and registra
56
  * 2.0.0 - 2009-03-27 - Completely rewrote plugin to use page template, no more specifying template files & HTML
57
  * 2.0.1 - 2009-03-30 - Fixed a bug that redirected users who were not yet logged in to profile page
58
  * 2.0.2 - 2009-03-31 - Fixed a bug that broke new user registration and a bug that broke other plugins that use 'the_content' filter
59
- * 2.0.3 - 2009-04-02 - Fixed various reported bugs and cleaned up code
 
4
  Tags: wordpress, login, register, theme, form, james kelly
5
  Requires at least: 2.5
6
  Tested up to: 2.7.1
7
+ Stable tag: 2.0.4
8
 
9
  This plugin themes the WordPress login, register, forgot password and profile pages to look like the rest of your website.
10
 
56
  * 2.0.0 - 2009-03-27 - Completely rewrote plugin to use page template, no more specifying template files & HTML
57
  * 2.0.1 - 2009-03-30 - Fixed a bug that redirected users who were not yet logged in to profile page
58
  * 2.0.2 - 2009-03-31 - Fixed a bug that broke new user registration and a bug that broke other plugins that use 'the_content' filter
59
+ * 2.0.3 - 2009-04-02 - Fixed various reported bugs and cleaned up code
60
+ * 2.0.4 - 2009-04-03 - Fixed a bug regarding relative URL's in redirection
theme-my-login.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://webdesign.jaedub.com/wordpress-plugins/theme-my-login-plugin
5
  Description: Themes the WordPress login, register, forgot password and profile pages to look like the rest of your website.
6
- Version: 2.0.3
7
  Author: Jae Dub
8
  Author URI: http://webdesign.jaedub.com
9
 
@@ -29,6 +29,8 @@ Version History
29
  Fixed a bug that broke new user registration and a bug that broke other plugins that use 'the_content' filter
30
  2.0.3 - 2009-04-02
31
  Fixed various reported bugs and cleaned up code
 
 
32
  */
33
 
34
  if (!class_exists('ThemeMyLogin')) {
@@ -49,6 +51,7 @@ if (!class_exists('ThemeMyLogin')) {
49
  add_action('init', array(&$this, 'Init'));
50
  add_action('init', array(&$this, 'ReInit'));
51
 
 
52
  add_filter('wp_title', array(&$this, 'WPTitle'));
53
  add_filter('the_title', array(&$this, 'TheTitle'));
54
  add_filter('wp_list_pages_excludes', array(&$this, 'ListPagesExcludes'));
@@ -229,6 +232,10 @@ if (!class_exists('ThemeMyLogin')) {
229
  function DisplayLogin() {
230
  include 'includes/wp-login-forms.php';
231
  }
 
 
 
 
232
 
233
  function WPTitle($title) {
234
  if (is_page($this->GetOption('page_id'))) {
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://webdesign.jaedub.com/wordpress-plugins/theme-my-login-plugin
5
  Description: Themes the WordPress login, register, forgot password and profile pages to look like the rest of your website.
6
+ Version: 2.0.4
7
  Author: Jae Dub
8
  Author URI: http://webdesign.jaedub.com
9
 
29
  Fixed a bug that broke new user registration and a bug that broke other plugins that use 'the_content' filter
30
  2.0.3 - 2009-04-02
31
  Fixed various reported bugs and cleaned up code
32
+ 2.0.4 - 2009-04-03
33
+ Fixed a bug regarding relative URL's in redirection
34
  */
35
 
36
  if (!class_exists('ThemeMyLogin')) {
51
  add_action('init', array(&$this, 'Init'));
52
  add_action('init', array(&$this, 'ReInit'));
53
 
54
+ add_filter('wp_head', array(&$this, 'WPHead'));
55
  add_filter('wp_title', array(&$this, 'WPTitle'));
56
  add_filter('the_title', array(&$this, 'TheTitle'));
57
  add_filter('wp_list_pages_excludes', array(&$this, 'ListPagesExcludes'));
232
  function DisplayLogin() {
233
  include 'includes/wp-login-forms.php';
234
  }
235
+
236
+ function WPHead() {
237
+ echo '<!--Theme My Login Version ' . $this->version . '-->';
238
+ }
239
 
240
  function WPTitle($title) {
241
  if (is_page($this->GetOption('page_id'))) {