Ultimate Member – User Profile & Membership Plugin - Version 1.0.88

Version Description

Download this release

Release Info

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

Code changes from version 1.0.87 to 1.0.88

Files changed (4) hide show
  1. core/um-short-functions.php +2 -2
  2. index.php +1 -1
  3. readme.txt +5 -1
  4. um-config.php +1 -1
core/um-short-functions.php CHANGED
@@ -542,8 +542,8 @@ function um_reset_user() {
542
  function um_can_view_profile( $user_id ){
543
  global $ultimatemember;
544
 
545
- if ( !um_current_user_can('edit', $user_id ) && !$ultimatemember->user->is_approved( $user_id ) ) {
546
- return false;
547
  }
548
 
549
  if ( !is_user_logged_in() ) {
542
  function um_can_view_profile( $user_id ){
543
  global $ultimatemember;
544
 
545
+ if ( um_current_user_can('edit', $user_id ) ) {
546
+ return true;
547
  }
548
 
549
  if ( !is_user_logged_in() ) {
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.87
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.88
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.87
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
@@ -203,6 +203,10 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
203
 
204
  == Changelog ==
205
 
 
 
 
 
206
  = 1.0.87: March 17, 2015 =
207
 
208
  * Tweak: profile edit form tweaked to be processed for profile edit only. allows you to have custom (not nested) valid forms in other profile tabs
7
  Requires at least: 4.1
8
  Tested up to: 4.1.1
9
 
10
+ Stable Tag: 1.0.88
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
203
 
204
  == Changelog ==
205
 
206
+ = 1.0.88: March 18, 2015 =
207
+
208
+ * Fixed: bug with viewing member profiles
209
+
210
  = 1.0.87: March 17, 2015 =
211
 
212
  * Tweak: profile edit form tweaked to be processed for profile edit only. allows you to have custom (not nested) valid forms in other profile tabs
um-config.php CHANGED
@@ -1829,7 +1829,7 @@ $this->sections[] = array(
1829
  'type' => 'switch',
1830
  'title' => __( 'Allow Tracking','ultimatemember' ),
1831
  'default' => 0,
1832
- 'desc' => 'Help us improve Ultimate Member’s compatibility with other plugins and themes by allowing us to track non-sensitive data on your site. Click <a href="http://ultimatemember.com/tracking/">here</a> to see what data we track.',
1833
  'on' => __('Allow tracking','ultimatemember'),
1834
  'off' => __('Do not allow','ultimatemember'),
1835
  ),
1829
  'type' => 'switch',
1830
  'title' => __( 'Allow Tracking','ultimatemember' ),
1831
  'default' => 0,
1832
+ 'desc' => __( 'Help us improve Ultimate Member’s compatibility with other plugins and themes by allowing us to track non-sensitive data on your site. Click <a href="https://ultimatemember.com/tracking/" target="_blank">here</a> to see what data we track.', 'ultimatemember' ),
1833
  'on' => __('Allow tracking','ultimatemember'),
1834
  'off' => __('Do not allow','ultimatemember'),
1835
  ),