Theme My Login - Version 6.4.14

Version Description

  • Fix the "cookies blocked" notice that appeared upon entering invalid login credentials
  • Style alert link colors to match the alert that they're in
  • Tweak styling of the "Remember me" checkbox and label
Download this release

Release Info

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

Code changes from version 6.4.13 to 6.4.14

includes/class-theme-my-login.php CHANGED
@@ -21,7 +21,7 @@ class Theme_My_Login extends Theme_My_Login_Abstract {
21
  * @since 6.3.2
22
  * @const string
23
  */
24
- const VERSION = '6.4.13';
25
 
26
  /**
27
  * Holds options key
@@ -537,7 +537,7 @@ class Theme_My_Login extends Theme_My_Login_Abstract {
537
  __( 'https://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' )
538
  )
539
  );
540
- } else {
541
  // If cookies are disabled we can't log in even with a valid user+pass
542
  /* translators: 1: Browser cookie documentation URL */
543
  $user = new WP_Error(
21
  * @since 6.3.2
22
  * @const string
23
  */
24
+ const VERSION = '6.4.14';
25
 
26
  /**
27
  * Holds options key
537
  __( 'https://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' )
538
  )
539
  );
540
+ } elseif ( isset( $_GET['testcookie'] ) ) {
541
  // If cookies are disabled we can't log in even with a valid user+pass
542
  /* translators: 1: Browser cookie documentation URL */
543
  $user = new WP_Error(
languages/theme-my-login.pot CHANGED
@@ -2,15 +2,15 @@
2
  # This file is distributed under the same license as the Theme My Login package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Theme My Login 6.4.13\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/theme-my-login\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2018-05-28T12:28:38-04:00\n"
13
- "PO-Revision-Date: 2018-05-28T12:28:38-04:00\n"
14
  "X-Domain: theme-my-login\n"
15
 
16
  #: includes/class-theme-my-login.php:126
2
  # This file is distributed under the same license as the Theme My Login package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Theme My Login 6.4.14\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/theme-my-login\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2018-05-29T21:37:32-04:00\n"
13
+ "PO-Revision-Date: 2018-05-29T21:37:32-04:00\n"
14
  "X-Domain: theme-my-login\n"
15
 
16
  #: includes/class-theme-my-login.php:126
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: widget, login, registration, theme, custom, log in, register, sidebar, gravatar, redirection, e-mail
5
  Requires at least: 4.5
6
  Tested up to: 4.9.6
7
- Stable tag: 6.4.13
8
 
9
  Themes the WordPress login pages according to your theme.
10
 
@@ -57,6 +57,11 @@ Please visit https://wordpress.org/support/plugin/theme-my-login.
57
 
58
  == Changelog ==
59
 
 
 
 
 
 
60
  = 6.4.13 =
61
  * Implement a TML action selector for pages
62
  * Fix error about cookies not being enabled when they are
4
  Tags: widget, login, registration, theme, custom, log in, register, sidebar, gravatar, redirection, e-mail
5
  Requires at least: 4.5
6
  Tested up to: 4.9.6
7
+ Stable tag: 6.4.14
8
 
9
  Themes the WordPress login pages according to your theme.
10
 
57
 
58
  == Changelog ==
59
 
60
+ = 6.4.14 =
61
+ * Fix the "cookies blocked" notice that appeared upon entering invalid login credentials
62
+ * Style alert link colors to match the alert that they're in
63
+ * Tweak styling of the "Remember me" checkbox and label
64
+
65
  = 6.4.13 =
66
  * Implement a TML action selector for pages
67
  * Fix error about cookies not being enabled when they are
theme-my-login.css CHANGED
@@ -20,18 +20,30 @@
20
  color: #a94442;
21
  }
22
 
 
 
 
 
23
  .tml .message {
24
  border: 1px solid #faebcc;
25
  background-color: #fcf8e3;
26
  color: #8a6d3b;
27
  }
28
 
 
 
 
 
29
  .tml .success {
30
  border: 1px solid #d6e9c6;
31
  background-color: #dff0d8;
32
  color: #3c763d;
33
  }
34
 
 
 
 
 
35
  .tml p {
36
  margin: 0 0 1.5em 0;
37
  padding: 0;
@@ -44,6 +56,7 @@
44
 
45
  .tml .tml-rememberme-wrap label {
46
  display: inline;
 
47
  }
48
 
49
  .tml input,
@@ -56,6 +69,7 @@
56
  .tml input[type="checkbox"],
57
  .tml input[type="radio"],
58
  .tml .tml-rememberme-wrap input {
 
59
  vertical-align: middle;
60
  width: auto;
61
  }
@@ -233,10 +247,6 @@
233
  display: table-cell;
234
  }
235
 
236
- .tml-login .tml-rememberme-wrap input {
237
- margin: 0;
238
- }
239
-
240
  .tml-login .tml-submit-wrap {
241
  display: table-cell;
242
  text-align: right;
20
  color: #a94442;
21
  }
22
 
23
+ .tml .error a {
24
+ color: #843534;
25
+ }
26
+
27
  .tml .message {
28
  border: 1px solid #faebcc;
29
  background-color: #fcf8e3;
30
  color: #8a6d3b;
31
  }
32
 
33
+ .tml .message a {
34
+ color: #66512c;
35
+ }
36
+
37
  .tml .success {
38
  border: 1px solid #d6e9c6;
39
  background-color: #dff0d8;
40
  color: #3c763d;
41
  }
42
 
43
+ .tml .success a {
44
+ color: #2b542c;
45
+ }
46
+
47
  .tml p {
48
  margin: 0 0 1.5em 0;
49
  padding: 0;
56
 
57
  .tml .tml-rememberme-wrap label {
58
  display: inline;
59
+ font-size: 90%;
60
  }
61
 
62
  .tml input,
69
  .tml input[type="checkbox"],
70
  .tml input[type="radio"],
71
  .tml .tml-rememberme-wrap input {
72
+ margin: 0 0.5em 0 0;
73
  vertical-align: middle;
74
  width: auto;
75
  }
247
  display: table-cell;
248
  }
249
 
 
 
 
 
250
  .tml-login .tml-submit-wrap {
251
  display: table-cell;
252
  text-align: right;
theme-my-login.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/
5
  Description: Themes the WordPress login, registration and forgot password pages according to your theme.
6
- Version: 6.4.13
7
  Author: Jeff Farthing
8
  Author URI: http://www.jfarthing.com
9
  Text Domain: theme-my-login
3
  Plugin Name: Theme My Login
4
  Plugin URI: http://www.jfarthing.com/extend/wordpress-plugins/theme-my-login/
5
  Description: Themes the WordPress login, registration and forgot password pages according to your theme.
6
+ Version: 6.4.14
7
  Author: Jeff Farthing
8
  Author URI: http://www.jfarthing.com
9
  Text Domain: theme-my-login