Ultimate Member – User Profile & Membership Plugin - Version 1.0.26

Version Description

Download this release

Release Info

Developer ultimatemember
Plugin Icon 128x128 Ultimate Member – User Profile & Membership Plugin
Version 1.0.26
Comparing to
See all releases

Code changes from version 1.0.25 to 1.0.26

core/um-filters-avatars.php CHANGED
@@ -44,8 +44,7 @@
44
  '?d='. $default . '&s=' . $size . '" class="gravatar avatar avatar-'.$size.' um-avatar" width="'.$size.'" height="'.$size.'" alt="" />';
45
 
46
  }
47
-
48
- um_reset_user();
49
  return $avatar;
50
 
51
  }
44
  '?d='. $default . '&s=' . $size . '" class="gravatar avatar avatar-'.$size.' um-avatar" width="'.$size.'" height="'.$size.'" alt="" />';
45
 
46
  }
47
+
 
48
  return $avatar;
49
 
50
  }
core/um-short-functions.php CHANGED
@@ -63,6 +63,7 @@
63
  *** @Capitalize first initial
64
  ***/
65
  function um_cap_initials( $name ) {
 
66
  $name = str_replace('\' ', '\'', ucwords(str_replace('\'', '\' ', strtolower($name))));
67
  return $name;
68
  }
63
  *** @Capitalize first initial
64
  ***/
65
  function um_cap_initials( $name ) {
66
+ if ( is_email( $name ) ) return $name;
67
  $name = str_replace('\' ', '\'', ucwords(str_replace('\'', '\' ', strtolower($name))));
68
  return $name;
69
  }
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
- Version: 1.0.25
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
+ Version: 1.0.26
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: access control, community, communities, conditional fields, conditional lo
7
  Requires at least: 4.1
8
  Tested up to: 4.1
9
 
10
- Stable Tag: 1.0.25
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
@@ -168,6 +168,10 @@ Yes. The plugin works fine with WordPress network / multisite now. In a recent u
168
 
169
  == Changelog ==
170
 
 
 
 
 
171
  = 1.0.25: January 26, 2015 =
172
 
173
  * New: addded support to use gravatars (optionally) If the user does not have a custom avatar
7
  Requires at least: 4.1
8
  Tested up to: 4.1
9
 
10
+ Stable Tag: 1.0.26
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
168
 
169
  == Changelog ==
170
 
171
+ = 1.0.26: January 26, 2015 =
172
+
173
+ * Fixed: Important issue fix (update recommended)
174
+
175
  = 1.0.25: January 26, 2015 =
176
 
177
  * New: addded support to use gravatars (optionally) If the user does not have a custom avatar