Version Description
Download this release
Release Info
Developer | ultimatemember |
Plugin | Ultimate Member – User Profile & Membership Plugin |
Version | 1.0.71 |
Comparing to | |
See all releases |
Code changes from version 1.0.70 to 1.0.71
- core/um-files.php +3 -0
- core/um-filters-fields.php +2 -0
- core/um-password.php +1 -1
- index.php +1 -1
- readme.txt +6 -1
core/um-files.php
CHANGED
@@ -468,6 +468,9 @@ class UM_Files {
|
|
468 |
}
|
469 |
|
470 |
}
|
|
|
|
|
|
|
471 |
|
472 |
}
|
473 |
|
468 |
}
|
469 |
|
470 |
}
|
471 |
+
|
472 |
+
// removes a synced profile photo
|
473 |
+
delete_user_meta( $user_id, 'synced_profile_photo' );
|
474 |
|
475 |
}
|
476 |
|
core/um-filters-fields.php
CHANGED
@@ -128,6 +128,8 @@
|
|
128 |
***/
|
129 |
add_filter('um_profile_field_filter_hook__', 'um_profile_field_filter_hook__', 99, 2);
|
130 |
function um_profile_field_filter_hook__( $value, $data ) {
|
|
|
|
|
131 |
|
132 |
if ( isset( $data['validate'] ) && $data['validate'] != '' && strstr( $data['validate'], 'url' ) ) {
|
133 |
$alt = ( isset( $data['url_text'] ) && !empty( $data['url_text'] ) ) ? $data['url_text'] : $value;
|
128 |
***/
|
129 |
add_filter('um_profile_field_filter_hook__', 'um_profile_field_filter_hook__', 99, 2);
|
130 |
function um_profile_field_filter_hook__( $value, $data ) {
|
131 |
+
|
132 |
+
if ( !$value ) return '';
|
133 |
|
134 |
if ( isset( $data['validate'] ) && $data['validate'] != '' && strstr( $data['validate'], 'url' ) ) {
|
135 |
$alt = ( isset( $data['url_text'] ) && !empty( $data['url_text'] ) ) ? $data['url_text'] : $value;
|
core/um-password.php
CHANGED
@@ -21,7 +21,7 @@ class UM_Password {
|
|
21 |
|
22 |
global $ultimatemember;
|
23 |
|
24 |
-
if ( isset($_REQUEST['act']) && $_REQUEST['act'] == 'reset_password' && isset($_REQUEST['hash']) && strlen($_REQUEST['hash']) ==
|
25 |
isset($_REQUEST['user_id']) && is_numeric($_REQUEST['user_id']) ) {
|
26 |
|
27 |
um_fetch_user( $_REQUEST['user_id'] );
|
21 |
|
22 |
global $ultimatemember;
|
23 |
|
24 |
+
if ( isset($_REQUEST['act']) && $_REQUEST['act'] == 'reset_password' && isset($_REQUEST['hash']) && strlen($_REQUEST['hash']) == 40 &&
|
25 |
isset($_REQUEST['user_id']) && is_numeric($_REQUEST['user_id']) ) {
|
26 |
|
27 |
um_fetch_user( $_REQUEST['user_id'] );
|
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.0.
|
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.0.71
|
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.0.
|
11 |
|
12 |
License: GNU Version 2 or Any Later Version
|
13 |
|
@@ -189,6 +189,11 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
|
|
189 |
|
190 |
== Changelog ==
|
191 |
|
|
|
|
|
|
|
|
|
|
|
192 |
= 1.0.70: March 2, 2015 =
|
193 |
|
194 |
* Tweak: added a filter hook to control profile photo url
|
7 |
Requires at least: 4.1
|
8 |
Tested up to: 4.1.1
|
9 |
|
10 |
+
Stable Tag: 1.0.71
|
11 |
|
12 |
License: GNU Version 2 or Any Later Version
|
13 |
|
189 |
|
190 |
== Changelog ==
|
191 |
|
192 |
+
= 1.0.71: March 2, 2015 =
|
193 |
+
|
194 |
+
* Fixed: issue with password reset link
|
195 |
+
* Fixed: issue with social links showing but user did not fill them
|
196 |
+
|
197 |
= 1.0.70: March 2, 2015 =
|
198 |
|
199 |
* Tweak: added a filter hook to control profile photo url
|