Version Description
Download this release
Release Info
Developer | ultimatemember |
Plugin | ![]() |
Version | 1.2.5 |
Comparing to | |
See all releases |
Code changes from version 1.2.4 to 1.2.5
- core/um-actions-register.php +2 -2
- core/um-permalinks.php +3 -3
- index.php +1 -1
- readme.txt +5 -1
core/um-actions-register.php
CHANGED
@@ -171,8 +171,8 @@
|
|
171 |
|
172 |
if ( um_user( $status . '_action' ) == 'show_message' && um_user( $status . '_message' ) != '' ) {
|
173 |
$url = um_get_core_page('register');
|
174 |
-
$url =
|
175 |
-
$url =
|
176 |
exit( wp_redirect( $url ) );
|
177 |
}
|
178 |
|
171 |
|
172 |
if ( um_user( $status . '_action' ) == 'show_message' && um_user( $status . '_message' ) != '' ) {
|
173 |
$url = um_get_core_page('register');
|
174 |
+
$url = add_query_arg( 'message', $status, esc_url( $url ) );
|
175 |
+
$url = add_query_arg( 'uid', um_user('ID'), esc_url( $url ) );
|
176 |
exit( wp_redirect( $url ) );
|
177 |
}
|
178 |
|
core/um-permalinks.php
CHANGED
@@ -89,9 +89,9 @@ class UM_Permalinks {
|
|
89 |
|
90 |
if ( !um_user('account_secret_hash') ) return false;
|
91 |
|
92 |
-
$url =
|
93 |
-
$url =
|
94 |
-
$url =
|
95 |
|
96 |
return $url;
|
97 |
}
|
89 |
|
90 |
if ( !um_user('account_secret_hash') ) return false;
|
91 |
|
92 |
+
$url = add_query_arg( 'act', 'activate_via_email', home_url() );
|
93 |
+
$url = add_query_arg( 'hash', um_user('account_secret_hash'), $url );
|
94 |
+
$url = add_query_arg( 'user_id', um_user('ID'), $url );
|
95 |
|
96 |
return $url;
|
97 |
}
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate Member
|
4 |
Plugin URI: http://ultimatemember.com/
|
5 |
Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
|
6 |
-
Version: 1.2.
|
7 |
Author: Ultimate Member
|
8 |
Author URI: http://ultimatemember.com/
|
9 |
*/
|
3 |
Plugin Name: Ultimate Member
|
4 |
Plugin URI: http://ultimatemember.com/
|
5 |
Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
|
6 |
+
Version: 1.2.5
|
7 |
Author: Ultimate Member
|
8 |
Author URI: http://ultimatemember.com/
|
9 |
*/
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Tags: access control, author, authors, author profile, comments, community, comm
|
|
7 |
Requires at least: 4.1
|
8 |
Tested up to: 4.1.1
|
9 |
|
10 |
-
Stable Tag: 1.2.
|
11 |
|
12 |
License: GNU Version 2 or Any Later Version
|
13 |
|
@@ -140,6 +140,10 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
|
|
140 |
|
141 |
== Changelog ==
|
142 |
|
|
|
|
|
|
|
|
|
143 |
= 1.2.4: April 20, 2015 =
|
144 |
|
145 |
* New: added Russian language support
|
7 |
Requires at least: 4.1
|
8 |
Tested up to: 4.1.1
|
9 |
|
10 |
+
Stable Tag: 1.2.5
|
11 |
|
12 |
License: GNU Version 2 or Any Later Version
|
13 |
|
140 |
|
141 |
== Changelog ==
|
142 |
|
143 |
+
= 1.2.5: April 21, 2015 =
|
144 |
+
|
145 |
+
* Fixed: e-mail activation bugs
|
146 |
+
|
147 |
= 1.2.4: April 20, 2015 =
|
148 |
|
149 |
* New: added Russian language support
|