Theme My Login - Version 3.2.4

Version Description

  • Fixed the load_plugin_textdomain() call
  • Added 'login_head' action hook
Download this release

Release Info

Developer jfarthing84
Plugin Icon 128x128 Theme My Login
Version 3.2.4
Comparing to
See all releases

Code changes from version 3.2.3 to 3.2.4

Files changed (2) hide show
  1. readme.txt +4 -0
  2. theme-my-login.php +4 -3
readme.txt CHANGED
@@ -27,6 +27,10 @@ None yet. Please visit http://www.jfarthing.com/forum for any support!
27
 
28
  == Changelog ==
29
 
 
 
 
 
30
  = 3.2.3 =
31
  * Fixed and updated many gettext calls for internationalization
32
 
27
 
28
  == Changelog ==
29
 
30
+ = 3.2.4 =
31
+ * Fixed the load_plugin_textdomain() call
32
+ * Added 'login_head' action hook
33
+
34
  = 3.2.3 =
35
  * Fixed and updated many gettext calls for internationalization
36
 
theme-my-login.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://www.jfarthing.com/wordpress-plugins/theme-my-login-plugin
5
  Description: Themes the WordPress login, registration and forgot password pages according to your theme.
6
- Version: 3.2.3
7
  Author: Jeff Farthing
8
  Author URI: http://www.jfarthing.com
9
  Text Domain: theme-my-login
@@ -27,7 +27,7 @@ if ($wp_version < '2.7') {
27
  if (!class_exists('ThemeMyLogin')) {
28
  class ThemeMyLogin {
29
 
30
- var $version = '3.2.3';
31
  var $options = array();
32
  var $permalink = '';
33
 
@@ -37,7 +37,7 @@ if (!class_exists('ThemeMyLogin')) {
37
 
38
  function __construct() {
39
 
40
- load_plugin_textdomain('theme-my-login', 'wp-content/plugins/theme-my-login/language', 'language');
41
 
42
  register_activation_hook ( __FILE__, array( &$this, 'Activate' ) );
43
  register_deactivation_hook ( __FILE__, array( &$this, 'Deactivate' ) );
@@ -197,6 +197,7 @@ if (!class_exists('ThemeMyLogin')) {
197
  echo '<!-- Theme My Login Version ' . $this->version . ' -->' . "\n";
198
  echo '<link rel="stylesheet" type="text/css" href="' . WP_PLUGIN_URL . '/theme-my-login/theme-my-login.css" />' . "\n";
199
  echo '<!-- Theme My Login Version ' . $this->version . ' -->' . "\n";
 
200
  }
201
 
202
  function WPTitle($title) {
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://www.jfarthing.com/wordpress-plugins/theme-my-login-plugin
5
  Description: Themes the WordPress login, registration and forgot password pages according to your theme.
6
+ Version: 3.2.4
7
  Author: Jeff Farthing
8
  Author URI: http://www.jfarthing.com
9
  Text Domain: theme-my-login
27
  if (!class_exists('ThemeMyLogin')) {
28
  class ThemeMyLogin {
29
 
30
+ var $version = '3.2.4';
31
  var $options = array();
32
  var $permalink = '';
33
 
37
 
38
  function __construct() {
39
 
40
+ load_plugin_textdomain('theme-my-login', '/wp-content/plugins/theme-my-login/language');
41
 
42
  register_activation_hook ( __FILE__, array( &$this, 'Activate' ) );
43
  register_deactivation_hook ( __FILE__, array( &$this, 'Deactivate' ) );
197
  echo '<!-- Theme My Login Version ' . $this->version . ' -->' . "\n";
198
  echo '<link rel="stylesheet" type="text/css" href="' . WP_PLUGIN_URL . '/theme-my-login/theme-my-login.css" />' . "\n";
199
  echo '<!-- Theme My Login Version ' . $this->version . ' -->' . "\n";
200
+ do_action('login_head');
201
  }
202
 
203
  function WPTitle($title) {