Theme My Login - Version 6.4.15

Version Description

  • Fix a bug where pages were being excluded from legacy page menus and search
  • Add a notice about the impending release of 7
Download this release

Release Info

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

Code changes from version 6.4.14 to 6.4.15

admin/class-theme-my-login-admin.php CHANGED
@@ -54,6 +54,9 @@ class Theme_My_Login_Admin extends Theme_My_Login_Abstract {
54
  add_action( 'admin_menu', array( $this, 'admin_menu' ), 8 );
55
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ), 11 );
56
 
 
 
 
57
  add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
58
  add_action( 'save_post', array( $this, 'save_action_meta_box' ) );
59
 
@@ -125,6 +128,55 @@ class Theme_My_Login_Admin extends Theme_My_Login_Abstract {
125
  ) );
126
  }
127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  /**
129
  * Adds the TML Action meta box.
130
  *
@@ -174,7 +226,14 @@ class Theme_My_Login_Admin extends Theme_My_Login_Abstract {
174
  }
175
 
176
  if ( isset( $_POST['tml_action'] ) ) {
177
- update_post_meta( $post_id, '_tml_action', sanitize_key( $_POST['tml_action'] ) );
 
 
 
 
 
 
 
178
  }
179
  }
180
 
54
  add_action( 'admin_menu', array( $this, 'admin_menu' ), 8 );
55
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ), 11 );
56
 
57
+ add_action( 'admin_notices', array( $this, 'admin_notices' ) );
58
+ add_action( 'wp_ajax_tml-dismiss-notice', array( $this, 'ajax_dismiss_notice' ) );
59
+
60
  add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
61
  add_action( 'save_post', array( $this, 'save_action_meta_box' ) );
62
 
128
  ) );
129
  }
130
 
131
+ /**
132
+ * Print admin notices.
133
+ *
134
+ * @since 6.4.5
135
+ *
136
+ * @return [type] [description]
137
+ */
138
+ public function admin_notices() {
139
+ $dismissed_notices = $this->get_option( 'dismissed_notices', array() );
140
+
141
+ if ( current_user_can( 'manage_options' ) && ! in_array( '7', $dismissed_notices ) ) {
142
+ ?>
143
+
144
+ <div class="notice notice-info tml-notice is-dismissible" data-notice="7">
145
+ <p>
146
+ <?php _e( '<strong>Heads up!</strong> Theme My Login 7 is right around the corner and some major changes are coming!', 'theme-my-login' ); ?>
147
+ <br /><br />
148
+ <?php _e( 'Most notably, all of the previously included modules (with the exception of Custom Passwords, which has been merged into the core plugin) have been removed.', 'theme-my-login' ); ?>
149
+ <?php _e( 'Instead, all of the legacy modules (now called "Extensions"), with many more to come, can now be purchased at our <a href="https://thememylogin.com/extensions">extensions store</a>.', 'theme-my-login' ); ?>
150
+ <br /><br />
151
+ <?php _e( "It's not all bad news though! As a legacy user, we're offering you a discount for a limited time. Use discount code <strong>SAVINGFACE</strong> at checkout in order to receive <strong>20% off</strong> of your purchase!", 'theme-my-login' ); ?>
152
+ <br /><br />
153
+ <a class="button button-primary" href="https://thememylogin.com/extensions" target="_blank"><?php _e( 'Take Me To The Store', 'theme-my-login' ); ?></a>
154
+ </p>
155
+ </div>
156
+
157
+ <?php
158
+ }
159
+ }
160
+
161
+ /**
162
+ * Handle saving of notice dismissals.
163
+ *
164
+ * @since 6.4.15
165
+ */
166
+ public function ajax_dismiss_notice() {
167
+ if ( empty( $_POST['notice'] ) ) {
168
+ return;
169
+ }
170
+
171
+ $dismissed_notices = $this->get_option( 'disbaled_notices', array() );
172
+ $dismissed_notices[] = sanitize_key( $_POST['notice'] );
173
+
174
+ $this->set_option( 'dismissed_notices', $dismissed_notices );
175
+ $this->save_options();
176
+
177
+ wp_send_json_success();
178
+ }
179
+
180
  /**
181
  * Adds the TML Action meta box.
182
  *
226
  }
227
 
228
  if ( isset( $_POST['tml_action'] ) ) {
229
+ $tml_action = sanitize_key( $_POST['tml_action'] );
230
+ if ( ! empty( $_POST['tml_action'] ) ) {
231
+ update_post_meta( $post_id, '_tml_action', $tml_action );
232
+ } else {
233
+ if ( false !== get_post_meta( $post_id, '_tml_action', true ) ) {
234
+ delete_post_meta( $post_id, '_tml_action' );
235
+ }
236
+ }
237
  }
238
  }
239
 
admin/js/theme-my-login-admin.js CHANGED
@@ -1,6 +1,20 @@
1
  (function($) {
2
  var form = $('#wp-auth-check-form');
3
 
4
- if (form.length)
5
  form.data('src', tmlAdmin.interim_login_url);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  })(jQuery);
1
  (function($) {
2
  var form = $('#wp-auth-check-form');
3
 
4
+ if (form.length) {
5
  form.data('src', tmlAdmin.interim_login_url);
6
+ }
7
+
8
+ $(initNotices);
9
+
10
+ function initNotices() {
11
+ $('.tml-notice').on('click', '.notice-dismiss', function(e) {
12
+ var notice = $(e.delegateTarget);
13
+
14
+ $.post(ajaxurl, {
15
+ action: 'tml-dismiss-notice',
16
+ notice: notice.data('notice')
17
+ });
18
+ });
19
+ }
20
  })(jQuery);
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.14';
25
 
26
  /**
27
  * Holds options key
@@ -107,9 +107,10 @@ class Theme_My_Login extends Theme_My_Login_Abstract {
107
  */
108
  public static function default_options() {
109
  return apply_filters( 'tml_default_options', array(
110
- 'enable_css' => true,
111
- 'login_type' => 'default',
112
- 'active_modules' => array()
 
113
  ) );
114
  }
115
 
21
  * @since 6.3.2
22
  * @const string
23
  */
24
+ const VERSION = '6.4.15';
25
 
26
  /**
27
  * Holds options key
107
  */
108
  public static function default_options() {
109
  return apply_filters( 'tml_default_options', array(
110
+ 'enable_css' => true,
111
+ 'login_type' => 'default',
112
+ 'active_modules' => array(),
113
+ 'dismissed_notices' => array()
114
  ) );
115
  }
116
 
languages/theme-my-login.pot CHANGED
@@ -2,111 +2,111 @@
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
17
  #: includes/class-theme-my-login-template.php:173
18
  #: templates/login-form.php:38
19
  msgid "Log In"
20
  msgstr ""
21
 
22
- #: includes/class-theme-my-login.php:127
23
  msgid "Log Out"
24
  msgstr ""
25
 
26
- #: includes/class-theme-my-login.php:128
27
  #: includes/class-theme-my-login-widget.php:111
28
  #: includes/class-theme-my-login-template.php:160
29
  #: templates/register-form.php:28
30
  msgid "Register"
31
  msgstr ""
32
 
33
- #: includes/class-theme-my-login.php:129
34
  #: includes/class-theme-my-login-widget.php:112
35
  #: includes/class-theme-my-login-template.php:166
36
  msgid "Lost Password"
37
  msgstr ""
38
 
39
- #: includes/class-theme-my-login.php:130
40
  #: templates/resetpass-form.php:44
41
  #: modules/custom-email/admin/custom-email-admin.php:100
42
  msgid "Reset Password"
43
  msgstr ""
44
 
45
- #: includes/class-theme-my-login.php:389
46
  msgid "Your password reset link appears to be invalid. Please request a new link below."
47
  msgstr ""
48
 
49
- #: includes/class-theme-my-login.php:391
50
  msgid "Your password reset link has expired. Please request a new link below."
51
  msgstr ""
52
 
53
- #: includes/class-theme-my-login.php:429
54
  msgid "The passwords do not match."
55
  msgstr ""
56
 
57
- #: includes/class-theme-my-login.php:580
58
  msgid "Your session has expired. Please log in to continue where you left off."
59
  msgstr ""
60
 
61
- #: includes/class-theme-my-login.php:584
62
  msgid "You are now logged out."
63
  msgstr ""
64
 
65
- #: includes/class-theme-my-login.php:586
66
  msgid "User registration is currently not allowed."
67
  msgstr ""
68
 
69
- #: includes/class-theme-my-login.php:588
70
  msgid "Check your email for the confirmation link."
71
  msgstr ""
72
 
73
- #: includes/class-theme-my-login.php:590
74
  msgid "Check your email for your new password."
75
  msgstr ""
76
 
77
- #: includes/class-theme-my-login.php:592
78
  msgid "Your password has been reset."
79
  msgstr ""
80
 
81
- #: includes/class-theme-my-login.php:594
82
  msgid "Registration complete. Please check your email."
83
  msgstr ""
84
 
85
- #: includes/class-theme-my-login.php:596
86
  msgid "<strong>You have successfully updated WordPress!</strong> Please log back in to see what&#8217;s new."
87
  msgstr ""
88
 
89
- #: includes/class-theme-my-login.php:943
90
  msgid "<strong>ERROR</strong>: Invalid email address."
91
  msgstr ""
92
 
93
- #: includes/class-theme-my-login.php:1271
94
  msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
95
  msgstr ""
96
 
97
- #: includes/class-theme-my-login.php:1275
98
  msgid "<strong>ERROR</strong>: There is no user registered with that email address."
99
  msgstr ""
100
 
101
- #: includes/class-theme-my-login.php:1287
102
  msgid "<strong>ERROR</strong>: Invalid username or e-mail."
103
  msgstr ""
104
 
105
- #: includes/class-theme-my-login.php:1300
106
  msgid "Someone requested that the password be reset for the following account:"
107
  msgstr ""
108
 
109
- #: includes/class-theme-my-login.php:1302
110
  #: modules/user-moderation/admin/user-moderation-admin.php:382
111
  #: modules/user-moderation/user-moderation.php:461
112
  #: modules/custom-email/custom-email.php:843
@@ -114,26 +114,26 @@ msgstr ""
114
  msgid "Username: %s"
115
  msgstr ""
116
 
117
- #: includes/class-theme-my-login.php:1303
118
  msgid "If this was a mistake, just ignore this email and nothing will happen."
119
  msgstr ""
120
 
121
- #: includes/class-theme-my-login.php:1304
122
  msgid "To reset your password, visit the following address:"
123
  msgstr ""
124
 
125
- #: includes/class-theme-my-login.php:1315
126
  msgid "[%s] Password Reset"
127
  msgstr ""
128
 
129
- #: includes/class-theme-my-login.php:1321
130
  #: modules/user-moderation/admin/user-moderation-admin.php:252
131
  #: modules/user-moderation/admin/user-moderation-admin.php:394
132
  #: modules/user-moderation/admin/user-moderation-admin.php:436
133
  msgid "The e-mail could not be sent."
134
  msgstr ""
135
 
136
- #: includes/class-theme-my-login.php:1321
137
  #: modules/user-moderation/admin/user-moderation-admin.php:252
138
  #: modules/user-moderation/admin/user-moderation-admin.php:394
139
  #: modules/user-moderation/admin/user-moderation-admin.php:436
@@ -364,64 +364,84 @@ msgstr ""
364
  msgid "Enter your new password below."
365
  msgstr ""
366
 
367
- #: admin/class-theme-my-login-admin.php:71
368
- #: admin/class-theme-my-login-admin.php:189
369
  msgid "Theme My Login Settings"
370
  msgstr ""
371
 
372
- #: admin/class-theme-my-login-admin.php:72
373
  msgid "TML"
374
  msgstr ""
375
 
376
- #: admin/class-theme-my-login-admin.php:80
377
- #: admin/class-theme-my-login-admin.php:81
378
- #: admin/class-theme-my-login-admin.php:106
379
  msgid "General"
380
  msgstr ""
381
 
382
- #: admin/class-theme-my-login-admin.php:107
383
- #: admin/class-theme-my-login-admin.php:112
384
  msgid "Modules"
385
  msgstr ""
386
 
387
- #: admin/class-theme-my-login-admin.php:110
388
  msgid "Stylesheet"
389
  msgstr ""
390
 
391
- #: admin/class-theme-my-login-admin.php:111
392
  msgid "Login Type"
393
  msgstr ""
394
 
395
- #: admin/class-theme-my-login-admin.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  msgid "Theme My Login Action"
397
  msgstr ""
398
 
399
- #: admin/class-theme-my-login-admin.php:217
400
  msgid "Enable \"theme-my-login.css\""
401
  msgstr ""
402
 
403
- #: admin/class-theme-my-login-admin.php:218
404
  msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
405
  msgstr ""
406
 
407
- #: admin/class-theme-my-login-admin.php:234
408
  #: templates/login-form.php:18
409
  msgid "Username or E-mail"
410
  msgstr ""
411
 
412
- #: admin/class-theme-my-login-admin.php:237
413
  msgid "Username only"
414
  msgstr ""
415
 
416
- #: admin/class-theme-my-login-admin.php:240
417
  msgid "E-mail only"
418
  msgstr ""
419
 
420
- #: admin/class-theme-my-login-admin.php:244
421
  msgid "Allow users to login using their username and/or e-mail address."
422
  msgstr ""
423
 
424
- #: admin/class-theme-my-login-admin.php:260
425
  msgid "Enable %s"
426
  msgstr ""
427
 
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.15\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-31T17:31:27-04:00\n"
13
+ "PO-Revision-Date: 2018-05-31T17:31:27-04:00\n"
14
  "X-Domain: theme-my-login\n"
15
 
16
+ #: includes/class-theme-my-login.php:127
17
  #: includes/class-theme-my-login-template.php:173
18
  #: templates/login-form.php:38
19
  msgid "Log In"
20
  msgstr ""
21
 
22
+ #: includes/class-theme-my-login.php:128
23
  msgid "Log Out"
24
  msgstr ""
25
 
26
+ #: includes/class-theme-my-login.php:129
27
  #: includes/class-theme-my-login-widget.php:111
28
  #: includes/class-theme-my-login-template.php:160
29
  #: templates/register-form.php:28
30
  msgid "Register"
31
  msgstr ""
32
 
33
+ #: includes/class-theme-my-login.php:130
34
  #: includes/class-theme-my-login-widget.php:112
35
  #: includes/class-theme-my-login-template.php:166
36
  msgid "Lost Password"
37
  msgstr ""
38
 
39
+ #: includes/class-theme-my-login.php:131
40
  #: templates/resetpass-form.php:44
41
  #: modules/custom-email/admin/custom-email-admin.php:100
42
  msgid "Reset Password"
43
  msgstr ""
44
 
45
+ #: includes/class-theme-my-login.php:390
46
  msgid "Your password reset link appears to be invalid. Please request a new link below."
47
  msgstr ""
48
 
49
+ #: includes/class-theme-my-login.php:392
50
  msgid "Your password reset link has expired. Please request a new link below."
51
  msgstr ""
52
 
53
+ #: includes/class-theme-my-login.php:430
54
  msgid "The passwords do not match."
55
  msgstr ""
56
 
57
+ #: includes/class-theme-my-login.php:581
58
  msgid "Your session has expired. Please log in to continue where you left off."
59
  msgstr ""
60
 
61
+ #: includes/class-theme-my-login.php:585
62
  msgid "You are now logged out."
63
  msgstr ""
64
 
65
+ #: includes/class-theme-my-login.php:587
66
  msgid "User registration is currently not allowed."
67
  msgstr ""
68
 
69
+ #: includes/class-theme-my-login.php:589
70
  msgid "Check your email for the confirmation link."
71
  msgstr ""
72
 
73
+ #: includes/class-theme-my-login.php:591
74
  msgid "Check your email for your new password."
75
  msgstr ""
76
 
77
+ #: includes/class-theme-my-login.php:593
78
  msgid "Your password has been reset."
79
  msgstr ""
80
 
81
+ #: includes/class-theme-my-login.php:595
82
  msgid "Registration complete. Please check your email."
83
  msgstr ""
84
 
85
+ #: includes/class-theme-my-login.php:597
86
  msgid "<strong>You have successfully updated WordPress!</strong> Please log back in to see what&#8217;s new."
87
  msgstr ""
88
 
89
+ #: includes/class-theme-my-login.php:944
90
  msgid "<strong>ERROR</strong>: Invalid email address."
91
  msgstr ""
92
 
93
+ #: includes/class-theme-my-login.php:1272
94
  msgid "<strong>ERROR</strong>: Enter a username or e-mail address."
95
  msgstr ""
96
 
97
+ #: includes/class-theme-my-login.php:1276
98
  msgid "<strong>ERROR</strong>: There is no user registered with that email address."
99
  msgstr ""
100
 
101
+ #: includes/class-theme-my-login.php:1288
102
  msgid "<strong>ERROR</strong>: Invalid username or e-mail."
103
  msgstr ""
104
 
105
+ #: includes/class-theme-my-login.php:1301
106
  msgid "Someone requested that the password be reset for the following account:"
107
  msgstr ""
108
 
109
+ #: includes/class-theme-my-login.php:1303
110
  #: modules/user-moderation/admin/user-moderation-admin.php:382
111
  #: modules/user-moderation/user-moderation.php:461
112
  #: modules/custom-email/custom-email.php:843
114
  msgid "Username: %s"
115
  msgstr ""
116
 
117
+ #: includes/class-theme-my-login.php:1304
118
  msgid "If this was a mistake, just ignore this email and nothing will happen."
119
  msgstr ""
120
 
121
+ #: includes/class-theme-my-login.php:1305
122
  msgid "To reset your password, visit the following address:"
123
  msgstr ""
124
 
125
+ #: includes/class-theme-my-login.php:1316
126
  msgid "[%s] Password Reset"
127
  msgstr ""
128
 
129
+ #: includes/class-theme-my-login.php:1322
130
  #: modules/user-moderation/admin/user-moderation-admin.php:252
131
  #: modules/user-moderation/admin/user-moderation-admin.php:394
132
  #: modules/user-moderation/admin/user-moderation-admin.php:436
133
  msgid "The e-mail could not be sent."
134
  msgstr ""
135
 
136
+ #: includes/class-theme-my-login.php:1322
137
  #: modules/user-moderation/admin/user-moderation-admin.php:252
138
  #: modules/user-moderation/admin/user-moderation-admin.php:394
139
  #: modules/user-moderation/admin/user-moderation-admin.php:436
364
  msgid "Enter your new password below."
365
  msgstr ""
366
 
367
+ #: admin/class-theme-my-login-admin.php:74
368
+ #: admin/class-theme-my-login-admin.php:248
369
  msgid "Theme My Login Settings"
370
  msgstr ""
371
 
372
+ #: admin/class-theme-my-login-admin.php:75
373
  msgid "TML"
374
  msgstr ""
375
 
376
+ #: admin/class-theme-my-login-admin.php:83
377
+ #: admin/class-theme-my-login-admin.php:84
378
+ #: admin/class-theme-my-login-admin.php:109
379
  msgid "General"
380
  msgstr ""
381
 
382
+ #: admin/class-theme-my-login-admin.php:110
383
+ #: admin/class-theme-my-login-admin.php:115
384
  msgid "Modules"
385
  msgstr ""
386
 
387
+ #: admin/class-theme-my-login-admin.php:113
388
  msgid "Stylesheet"
389
  msgstr ""
390
 
391
+ #: admin/class-theme-my-login-admin.php:114
392
  msgid "Login Type"
393
  msgstr ""
394
 
395
+ #: admin/class-theme-my-login-admin.php:146
396
+ msgid "<strong>Heads up!</strong> Theme My Login 7 is right around the corner and some major changes are coming!"
397
+ msgstr ""
398
+
399
+ #: admin/class-theme-my-login-admin.php:148
400
+ msgid "Most notably, all of the previously included modules (with the exception of Custom Passwords, which has been merged into the core plugin) have been removed."
401
+ msgstr ""
402
+
403
+ #: admin/class-theme-my-login-admin.php:149
404
+ msgid "Instead, all of the legacy modules (now called \"Extensions\"), with many more to come, can now be purchased at our <a href=\"https://thememylogin.com/extensions\">extensions store</a>."
405
+ msgstr ""
406
+
407
+ #: admin/class-theme-my-login-admin.php:151
408
+ msgid "It's not all bad news though! As a legacy user, we're offering you a discount for a limited time. Use discount code <strong>SAVINGFACE</strong> at checkout in order to receive <strong>20% off</strong> of your purchase!"
409
+ msgstr ""
410
+
411
+ #: admin/class-theme-my-login-admin.php:153
412
+ msgid "Take Me To The Store"
413
+ msgstr ""
414
+
415
+ #: admin/class-theme-my-login-admin.php:188
416
  msgid "Theme My Login Action"
417
  msgstr ""
418
 
419
+ #: admin/class-theme-my-login-admin.php:276
420
  msgid "Enable \"theme-my-login.css\""
421
  msgstr ""
422
 
423
+ #: admin/class-theme-my-login-admin.php:277
424
  msgid "In order to keep changes between upgrades, you can store your customized \"theme-my-login.css\" in your current theme directory."
425
  msgstr ""
426
 
427
+ #: admin/class-theme-my-login-admin.php:293
428
  #: templates/login-form.php:18
429
  msgid "Username or E-mail"
430
  msgstr ""
431
 
432
+ #: admin/class-theme-my-login-admin.php:296
433
  msgid "Username only"
434
  msgstr ""
435
 
436
+ #: admin/class-theme-my-login-admin.php:299
437
  msgid "E-mail only"
438
  msgstr ""
439
 
440
+ #: admin/class-theme-my-login-admin.php:303
441
  msgid "Allow users to login using their username and/or e-mail address."
442
  msgstr ""
443
 
444
+ #: admin/class-theme-my-login-admin.php:319
445
  msgid "Enable %s"
446
  msgstr ""
447
 
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.14
8
 
9
  Themes the WordPress login pages according to your theme.
10
 
@@ -57,6 +57,10 @@ Please visit https://wordpress.org/support/plugin/theme-my-login.
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
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.15
8
 
9
  Themes the WordPress login pages according to your theme.
10
 
57
 
58
  == Changelog ==
59
 
60
+ = 6.4.15 =
61
+ * Fix a bug where pages were being excluded from legacy page menus and search
62
+ * Add a notice about the impending release of 7
63
+
64
  = 6.4.14 =
65
  * Fix the "cookies blocked" notice that appeared upon entering invalid login credentials
66
  * Style alert link colors to match the alert that they're in
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.14
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.15
7
  Author: Jeff Farthing
8
  Author URI: http://www.jfarthing.com
9
  Text Domain: theme-my-login