Ticket #2294: 2294.001.diff
File 2294.001.diff, 44.1 KB (added by , 15 years ago) |
---|
-
bp-friends.php
112 112 <tr> 113 113 <td></td> 114 114 <td><?php _e( 'A member sends you a friendship request', 'buddypress' ) ?></td> 115 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_request]" value="yes" <?php if ( !get_user meta( $current_user->id,'notification_friends_friendship_request') || 'yes' == get_usermeta( $current_user->id,'notification_friends_friendship_request') ) { ?>checked="checked" <?php } ?>/></td>116 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_request]" value="no" <?php if ( get_user meta( $current_user->id,'notification_friends_friendship_request') == 'no' ) { ?>checked="checked" <?php } ?>/></td>115 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_request]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_friends_friendship_request', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_friends_friendship_request', true ) ) { ?>checked="checked" <?php } ?>/></td> 116 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_request]" value="no" <?php if ( get_user_meta( $current_user->id, 'notification_friends_friendship_request', true ) == 'no' ) { ?>checked="checked" <?php } ?>/></td> 117 117 </tr> 118 118 <tr> 119 119 <td></td> 120 120 <td><?php _e( 'A member accepts your friendship request', 'buddypress' ) ?></td> 121 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="yes" <?php if ( !get_user meta( $current_user->id,'notification_friends_friendship_accepted') || 'yes' == get_usermeta( $current_user->id,'notification_friends_friendship_accepted') ) { ?>checked="checked" <?php } ?>/></td>122 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="no" <?php if ( 'no' == get_user meta( $current_user->id,'notification_friends_friendship_accepted') ) { ?>checked="checked" <?php } ?>/></td>121 <td class="yes"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_friends_friendship_accepted', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_friends_friendship_accepted', true ) ) { ?>checked="checked" <?php } ?>/></td> 122 <td class="no"><input type="radio" name="notifications[notification_friends_friendship_accepted]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_friends_friendship_accepted', true ) ) { ?>checked="checked" <?php } ?>/></td> 123 123 </tr> 124 124 125 125 <?php do_action( 'friends_screen_notification_settings' ); ?> … … 443 443 $user_id = ( $bp->displayed_user->id ) ? $bp->displayed_user->id : $bp->loggedin_user->id; 444 444 445 445 if ( !$count = wp_cache_get( 'bp_total_friend_count_' . $user_id, 'bp' ) ) { 446 $count = get_user meta( $user_id, 'total_friend_count');446 $count = get_user_meta( $user_id, 'total_friend_count', true ); 447 447 if ( empty( $count ) ) $count = 0; 448 448 wp_cache_set( 'bp_total_friend_count_' . $user_id, $count, 'bp' ); 449 449 } … … 546 546 547 547 function friends_update_friend_totals( $initiator_user_id, $friend_user_id, $status = 'add' ) { 548 548 if ( 'add' == $status ) { 549 update_user meta( $initiator_user_id, 'total_friend_count', (int)get_usermeta( $initiator_user_id, 'total_friend_count') + 1 );550 update_user meta( $friend_user_id, 'total_friend_count', (int)get_usermeta( $friend_user_id, 'total_friend_count') + 1 );549 update_user_meta( $initiator_user_id, 'total_friend_count', (int)get_user_meta( $initiator_user_id, 'total_friend_count', true ) + 1 ); 550 update_user_meta( $friend_user_id, 'total_friend_count', (int)get_user_meta( $friend_user_id, 'total_friend_count', true ) + 1 ); 551 551 } else { 552 update_user meta( $initiator_user_id, 'total_friend_count', (int)get_usermeta( $initiator_user_id, 'total_friend_count') - 1 );553 update_user meta( $friend_user_id, 'total_friend_count', (int)get_usermeta( $friend_user_id, 'total_friend_count') - 1 );552 update_user_meta( $initiator_user_id, 'total_friend_count', (int)get_user_meta( $initiator_user_id, 'total_friend_count', true ) - 1 ); 553 update_user_meta( $friend_user_id, 'total_friend_count', (int)get_user_meta( $friend_user_id, 'total_friend_count', true ) - 1 ); 554 554 } 555 555 } 556 556 … … 558 558 BP_Friends_Friendship::delete_all_for_user($user_id); 559 559 560 560 /* Remove usermeta */ 561 delete_user meta( $user_id, 'total_friend_count' );561 delete_user_meta( $user_id, 'total_friend_count' ); 562 562 563 563 /* Remove friendship requests FROM user */ 564 564 bp_core_delete_notifications_from_user( $user_id, $bp->friends->id, 'friendship_request' ); -
bp-activity.php
193 193 <tr> 194 194 <td></td> 195 195 <td><?php printf( __( 'A member mentions you in an update using "@%s"', 'buddypress' ), bp_core_get_username( $bp->loggedin_user->id, $bp->loggedin_user->userdata->user_nicename, $bp->loggedin_user->userdata->user_login ) ) ?></td> 196 <td class="yes"><input type="radio" name="notifications[notification_activity_new_mention]" value="yes" <?php if ( !get_user meta( $bp->loggedin_user->id, 'notification_activity_new_mention' ) || 'yes' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_mention') ) { ?>checked="checked" <?php } ?>/></td>197 <td class="no"><input type="radio" name="notifications[notification_activity_new_mention]" value="no" <?php if ( 'no' == get_user meta( $bp->loggedin_user->id, 'notification_activity_new_mention') ) { ?>checked="checked" <?php } ?>/></td>196 <td class="yes"><input type="radio" name="notifications[notification_activity_new_mention]" value="yes" <?php if ( !get_user_meta( $bp->loggedin_user->id, 'notification_activity_new_mention', true ) || 'yes' == get_user_meta( $bp->loggedin_user->id, 'notification_activity_new_mention', true ) ) { ?>checked="checked" <?php } ?>/></td> 197 <td class="no"><input type="radio" name="notifications[notification_activity_new_mention]" value="no" <?php if ( 'no' == get_user_meta( $bp->loggedin_user->id, 'notification_activity_new_mention', true ) ) { ?>checked="checked" <?php } ?>/></td> 198 198 </tr> 199 199 <tr> 200 200 <td></td> 201 201 <td><?php printf( __( "A member replies to an update or comment you've posted", 'buddypress' ), $current_user->user_login ) ?></td> 202 <td class="yes"><input type="radio" name="notifications[notification_activity_new_reply]" value="yes" <?php if ( !get_user meta( $bp->loggedin_user->id, 'notification_activity_new_reply' ) || 'yes' == get_usermeta( $bp->loggedin_user->id, 'notification_activity_new_reply') ) { ?>checked="checked" <?php } ?>/></td>203 <td class="no"><input type="radio" name="notifications[notification_activity_new_reply]" value="no" <?php if ( 'no' == get_user meta( $bp->loggedin_user->id, 'notification_activity_new_reply') ) { ?>checked="checked" <?php } ?>/></td>202 <td class="yes"><input type="radio" name="notifications[notification_activity_new_reply]" value="yes" <?php if ( !get_user_meta( $bp->loggedin_user->id, 'notification_activity_new_reply', true ) || 'yes' == get_user_meta( $bp->loggedin_user->id, 'notification_activity_new_reply', true ) ) { ?>checked="checked" <?php } ?>/></td> 203 <td class="no"><input type="radio" name="notifications[notification_activity_new_reply]" value="no" <?php if ( 'no' == get_user_meta( $bp->loggedin_user->id, 'notification_activity_new_reply', true ) ) { ?>checked="checked" <?php } ?>/></td> 204 204 </tr> 205 205 206 206 <?php do_action( 'bp_activity_screen_notification_settings' ) ?> … … 627 627 ) ); 628 628 629 629 /* Add this update to the "latest update" usermeta so it can be fetched anywhere. */ 630 update_user meta( $bp->loggedin_user->id, 'bp_latest_update', array( 'id' => $activity_id, 'content' => wp_filter_kses( $content ) ) );630 update_user_meta( $bp->loggedin_user->id, 'bp_latest_update', array( 'id' => $activity_id, 'content' => wp_filter_kses( $content ) ) ); 631 631 632 632 /* Require the notifications code so email notifications can be set on the 'bp_activity_posted_update' action. */ 633 633 require_once( BP_PLUGIN_DIR . '/bp-activity/bp-activity-notifications.php' ); … … 754 754 else 755 755 $user_id = $args['user_id']; 756 756 757 $latest_update = get_user meta( $user_id, 'bp_latest_update');757 $latest_update = get_user_meta( $user_id, 'bp_latest_update', true ); 758 758 if ( !empty( $latest_update ) ) { 759 759 if ( in_array( (int)$latest_update['id'], (array)$activity_ids_deleted ) ) 760 delete_user meta( $user_id, 'bp_latest_update' );760 delete_user_meta( $user_id, 'bp_latest_update' ); 761 761 } 762 762 763 763 do_action( 'bp_activity_delete', $args ); … … 908 908 } 909 909 910 910 function bp_activity_get_user_favorites( $user_id ) { 911 $my_favs = maybe_unserialize( get_usermeta( $user_id, 'bp_favorite_activities' ));911 $my_favs = get_user_meta( $user_id, 'bp_favorite_activities', true ); 912 912 $existing_favs = bp_activity_get_specific( array( 'activity_ids' => $my_favs ) ); 913 913 914 914 foreach( (array)$existing_favs['activities'] as $fav ) 915 915 $new_favs[] = $fav->id; 916 916 917 917 $new_favs = array_unique( (array)$new_favs ); 918 update_user meta( $user_id, 'bp_favorite_activities', $new_favs );918 update_user_meta( $user_id, 'bp_favorite_activities', $new_favs ); 919 919 920 920 return apply_filters( 'bp_activity_get_user_favorites', $new_favs ); 921 921 } … … 927 927 $user_id = $bp->loggedin_user->id; 928 928 929 929 /* Update the user's personal favorites */ 930 $my_favs = maybe_unserialize( get_usermeta( $bp->loggedin_user->id, 'bp_favorite_activities' ));930 $my_favs = get_user_meta( $bp->loggedin_user->id, 'bp_favorite_activities', true ); 931 931 $my_favs[] = $activity_id; 932 932 933 933 /* Update the total number of users who have favorited this activity */ … … 938 938 else 939 939 $fav_count = 1; 940 940 941 update_user meta( $bp->loggedin_user->id, 'bp_favorite_activities', $my_favs );941 update_user_meta( $bp->loggedin_user->id, 'bp_favorite_activities', $my_favs ); 942 942 bp_activity_update_meta( $activity_id, 'favorite_count', $fav_count ); 943 943 944 944 do_action( 'bp_activity_add_user_favorite', $activity_id, $user_id ); … … 953 953 $user_id = $bp->loggedin_user->id; 954 954 955 955 /* Remove the fav from the user's favs */ 956 $my_favs = maybe_unserialize( get_usermeta( $user_id, 'bp_favorite_activities' ));956 $my_favs = get_user_meta( $user_id, 'bp_favorite_activities', true ); 957 957 $my_favs = array_flip( (array) $my_favs ); 958 958 unset( $my_favs[$activity_id] ); 959 959 $my_favs = array_unique( array_flip( $my_favs ) ); … … 966 966 bp_activity_update_meta( $activity_id, 'favorite_count', $fav_count ); 967 967 } 968 968 969 update_user meta( $user_id, 'bp_favorite_activities', $my_favs );969 update_user_meta( $user_id, 'bp_favorite_activities', $my_favs ); 970 970 971 971 do_action( 'bp_activity_remove_user_favorite', $activity_id, $user_id ); 972 972 … … 1088 1088 bp_activity_delete( array( 'user_id' => $user_id ) ); 1089 1089 1090 1090 // Remove any usermeta 1091 delete_user meta( $user_id, 'bp_latest_update' );1092 delete_user meta( $user_id, 'bp_favorite_activities' );1091 delete_user_meta( $user_id, 'bp_latest_update' ); 1092 delete_user_meta( $user_id, 'bp_favorite_activities' ); 1093 1093 1094 1094 do_action( 'bp_activity_remove_data', $user_id ); 1095 1095 } -
bp-themes/bp-default/_inc/ajax.php
92 92 break; 93 93 case 'mentions': 94 94 $feed_url = $bp->loggedin_user->domain . BP_ACTIVITY_SLUG . '/mentions/feed/'; 95 delete_user meta( $bp->loggedin_user->id, 'bp_new_mention_count' );95 delete_user_meta( $bp->loggedin_user->id, 'bp_new_mention_count' ); 96 96 break; 97 97 } 98 98 … … 442 442 if ( !isset( $_POST['notice_id'] ) ) { 443 443 echo "-1<div id='message' class='error'><p>" . __('There was a problem closing the notice.', 'buddypress') . '</p></div>'; 444 444 } else { 445 $notice_ids = get_user meta( $userdata->ID, 'closed_notices');445 $notice_ids = get_user_meta( $userdata->ID, 'closed_notices', true ); 446 446 447 447 $notice_ids[] = (int) $_POST['notice_id']; 448 448 449 update_user meta( $userdata->ID, 'closed_notices', $notice_ids );449 update_user_meta( $userdata->ID, 'closed_notices', $notice_ids ); 450 450 } 451 451 } 452 452 add_action( 'wp_ajax_messages_close_notice', 'bp_dtheme_ajax_close_notice' ); -
bp-xprofile/bp-xprofile-templatetags.php
637 637 function bp_get_profile_last_updated() { 638 638 global $bp; 639 639 640 $last_updated = get_user meta( $bp->displayed_user->id, 'profile_last_updated');640 $last_updated = get_user_meta( $bp->displayed_user->id, 'profile_last_updated', true ); 641 641 642 642 if ( $last_updated ) 643 643 return apply_filters( 'bp_get_profile_last_updated', sprintf( __('Profile updated %s ago', 'buddypress'), bp_core_time_since( strtotime( $last_updated ) ) ) ); -
bp-core/bp-core-signup.php
360 360 */ 361 361 if ( !bp_core_is_multisite() ) { 362 362 $activation_key = wp_hash( $user_id ); 363 update_user meta( $user_id, 'activation_key', $activation_key );363 update_user_meta( $user_id, 'activation_key', $activation_key ); 364 364 bp_core_signup_send_validation_email( $user_id, $user_email, $activation_key ); 365 365 } 366 366 … … 422 422 wp_new_user_notification( $user_id ); 423 423 424 424 /* Remove the activation key meta */ 425 delete_user meta( $user_id, 'activation_key' );425 delete_user_meta( $user_id, 'activation_key' ); 426 426 } 427 427 428 428 /* Update the user_url and display_name */ 429 429 wp_update_user( array( 'ID' => $user_id, 'user_url' => bp_core_get_user_domain( $user_id, sanitize_title( $user_login ), $user_login ), 'display_name' => bp_core_get_user_displayname( $user_id ) ) ); 430 430 431 431 /* Add a last active entry */ 432 update_user meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );432 update_user_meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) ); 433 433 434 434 /* Set the password on multisite installs */ 435 435 if ( bp_core_is_multisite() && !empty( $user['meta']['password'] ) ) … … 472 472 return false; 473 473 474 474 /* Add a last active entry */ 475 update_user meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );475 update_user_meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) ); 476 476 477 477 /* Add the user's fullname to Xprofile */ 478 478 if ( function_exists( 'xprofile_set_field_data' ) ) { 479 $firstname = get_user meta( $user_id, 'first_name');480 $lastname = ' ' . get_user meta( $user_id, 'last_name');479 $firstname = get_user_meta( $user_id, 'first_name', true ); 480 $lastname = ' ' . get_user_meta( $user_id, 'last_name', true ); 481 481 $name = $firstname . $lastname; 482 482 483 483 if ( empty( $name ) || ' ' == $name ) 484 $name = get_user meta( $user_id, 'nickname');484 $name = get_user_meta( $user_id, 'nickname', true ); 485 485 486 486 xprofile_set_field_data( 1, $user_id, $name ); 487 487 } -
bp-core/bp-core-templatetags.php
677 677 if ( !$user_id ) 678 678 $user_id = $bp->displayed_user->id; 679 679 680 $last_activity = bp_core_get_last_activity( get_user meta( $user_id, 'last_activity'), __('active %s ago', 'buddypress') );680 $last_activity = bp_core_get_last_activity( get_user_meta( $user_id, 'last_activity', true ), __('active %s ago', 'buddypress') ); 681 681 682 682 if ( $echo ) 683 683 echo apply_filters( 'bp_last_activity', $last_activity ); -
bp-core/bp-core-classes.php
50 50 * @uses bp_core_get_userurl() Returns the URL with no HTML markup for a user based on their user id 51 51 * @uses bp_core_get_userlink() Returns a HTML formatted link for a user with the user's full name as the link text 52 52 * @uses bp_core_get_user_email() Returns the email address for the user based on user ID 53 * @uses get_user meta() WordPress function returns the value of passed usermeta name from usermeta table53 * @uses get_user_meta() WordPress function returns the value of passed usermeta name from usermeta table 54 54 * @uses bp_core_fetch_avatar() Returns HTML formatted avatar for a user 55 55 * @uses bp_profile_last_updated_date() Returns the last updated date for a user. 56 56 */ … … 79 79 $this->avatar_thumb = bp_core_fetch_avatar( array( 'item_id' => $this->id, 'type' => 'thumb' ) ); 80 80 $this->avatar_mini = bp_core_fetch_avatar( array( 'item_id' => $this->id, 'type' => 'thumb', 'width' => 30, 'height' => 30 ) ); 81 81 82 $this->last_active = bp_core_get_last_activity( get_user meta( $this->id, 'last_activity'), __( 'active %s ago', 'buddypress' ) );82 $this->last_active = bp_core_get_last_activity( get_user_meta( $this->id, 'last_activity', true ), __( 'active %s ago', 'buddypress' ) ); 83 83 } 84 84 85 85 function populate_extras() { -
bp-core/bp-core-settings.php
114 114 115 115 if ( $_POST['notifications'] ) { 116 116 foreach ( (array)$_POST['notifications'] as $key => $value ) { 117 update_user meta( (int)$current_user->id, $key, $value );117 update_user_meta( (int)$current_user->id, $key, $value ); 118 118 } 119 119 } 120 120 -
bp-friends/bp-friends-notifications.php
5 5 6 6 $initiator_name = bp_core_get_user_displayname( $initiator_id ); 7 7 8 if ( 'no' == get_user meta( (int)$friend_id, 'notification_friends_friendship_request') )8 if ( 'no' == get_user_meta( (int)$friend_id, 'notification_friends_friendship_request', true ) ) 9 9 return false; 10 10 11 11 $ud = get_userdata( $friend_id ); … … 47 47 48 48 $friend_name = bp_core_get_user_displayname( $friend_id ); 49 49 50 if ( 'no' == get_user meta( (int)$initiator_id, 'notification_friends_friendship_accepted') )50 if ( 'no' == get_user_meta( (int)$initiator_id, 'notification_friends_friendship_accepted', true ) ) 51 51 return false; 52 52 53 53 $ud = get_userdata( $initiator_id ); -
bp-friends/bp-friends-classes.php
129 129 if ( !$count ) 130 130 return 0; 131 131 132 update_user meta( $user_id, 'total_friend_count', $count );132 update_user_meta( $user_id, 'total_friend_count', $count ); 133 133 return $count; 134 134 } 135 135 -
bp-activity/bp-activity-filters.php
105 105 continue; 106 106 107 107 /* Increase the number of new @ mentions for the user */ 108 $new_mention_count = (int)get_user meta( $user_id, 'bp_new_mention_count');109 update_user meta( $user_id, 'bp_new_mention_count', $new_mention_count + 1 );108 $new_mention_count = (int)get_user_meta( $user_id, 'bp_new_mention_count', true ); 109 update_user_meta( $user_id, 'bp_new_mention_count', $new_mention_count + 1 ); 110 110 111 111 $content = str_replace( "@$username", "<a href='" . bp_core_get_user_domain( bp_core_get_userid( $username ) ) . "' rel='nofollow'>@$username</a>", $content ); 112 112 } -
bp-activity/bp-activity-notifications.php
16 16 continue; 17 17 18 18 // Now email the user with the contents of the message (if they have enabled email notifications) 19 if ( 'no' != get_user meta( $user_id, 'notification_activity_new_mention') ) {19 if ( 'no' != get_user_meta( $user_id, 'notification_activity_new_mention', true ) ) { 20 20 $poster_name = bp_core_get_user_displayname( $poster_user_id ); 21 21 22 22 $message_link = bp_activity_get_permalink( $activity_id ); … … 60 60 61 61 $original_activity = new BP_Activity_Activity( $activity_id ); 62 62 63 if ( $original_activity->user_id != $commenter_id && 'no' != get_user meta( $original_activity->user_id, 'notification_activity_new_reply') ) {63 if ( $original_activity->user_id != $commenter_id && 'no' != get_user_meta( $original_activity->user_id, 'notification_activity_new_reply', true ) ) { 64 64 $poster_name = bp_core_get_user_displayname( $commenter_id ); 65 65 $thread_link = bp_activity_get_permalink( $activity_id ); 66 66 $settings_link = bp_core_get_user_domain( $original_activity->user_id ) . BP_SETTINGS_SLUG . '/notifications/'; … … 102 102 103 103 $parent_comment = new BP_Activity_Activity( $parent_id ); 104 104 105 if ( $parent_comment->user_id != $commenter_id && $original_activity->user_id != $parent_comment->user_id && 'no' != get_user meta( $parent_comment->user_id, 'notification_activity_new_reply') ) {105 if ( $parent_comment->user_id != $commenter_id && $original_activity->user_id != $parent_comment->user_id && 'no' != get_user_meta( $parent_comment->user_id, 'notification_activity_new_reply', true ) ) { 106 106 $poster_name = bp_core_get_user_displayname( $commenter_id ); 107 107 $thread_link = bp_activity_get_permalink( $activity_id ); 108 108 $settings_link = bp_core_get_user_domain( $parent_comment->user_id ) . BP_SETTINGS_SLUG . '/notifications/'; -
bp-activity/bp-activity-templatetags.php
25 25 $this->disable_blogforum_replies = $bp->site_options['bp-disable-blogforum-comments']; 26 26 27 27 /* Get an array of the logged in user's favorite activities */ 28 $this->my_favs = maybe_unserialize( get_usermeta( $bp->loggedin_user->id, 'bp_favorite_activities' ));28 $this->my_favs = get_user_meta( $bp->loggedin_user->id, 'bp_favorite_activities', true ); 29 29 30 30 if ( !empty( $include ) ) { 31 31 /* Fetch specific activity items based on ID's */ … … 728 728 if ( !$user_id ) 729 729 $user_id = $bp->displayed_user->id; 730 730 731 if ( !$update = get_user meta( $user_id, 'bp_latest_update') )731 if ( !$update = get_user_meta( $user_id, 'bp_latest_update', true ) ) 732 732 return false; 733 733 734 734 $latest_update = '"' . trim( strip_tags( bp_create_excerpt( $update['content'], 40 ) ) ) . '"'; … … 830 830 echo bp_get_total_favorite_count_for_user( $user_id ); 831 831 } 832 832 function bp_get_total_mention_count_for_user( $user_id = false ) { 833 return apply_filters( 'bp_get_total_mention_count_for_user', get_user meta( $user_id, 'bp_new_mention_count') );833 return apply_filters( 'bp_get_total_mention_count_for_user', get_user_meta( $user_id, 'bp_new_mention_count', true ) ); 834 834 } 835 835 836 836 function bp_send_public_message_link() { -
bp-activity/bp-activity-classes.php
531 531 function total_favorite_count( $user_id ) { 532 532 global $bp; 533 533 534 if ( !$favorite_activity_entries = get_user meta( $user_id, 'bp_favorite_activities') )534 if ( !$favorite_activity_entries = get_user_meta( $user_id, 'bp_favorite_activities', true ) ) 535 535 return 0; 536 536 537 return count( maybe_unserialize( $favorite_activity_entries ));537 return count( $favorite_activity_entries ); 538 538 } 539 539 540 540 function check_exists_by_content( $content ) { -
bp-messages.php
175 175 <tr> 176 176 <td></td> 177 177 <td><?php _e( 'A member sends you a new message', 'buddypress' ) ?></td> 178 <td class="yes"><input type="radio" name="notifications[notification_messages_new_message]" value="yes" <?php if ( !get_user meta( $current_user->id, 'notification_messages_new_message' ) || 'yes' == get_usermeta( $current_user->id, 'notification_messages_new_message') ) { ?>checked="checked" <?php } ?>/></td>179 <td class="no"><input type="radio" name="notifications[notification_messages_new_message]" value="no" <?php if ( 'no' == get_user meta( $current_user->id, 'notification_messages_new_message') ) { ?>checked="checked" <?php } ?>/></td>178 <td class="yes"><input type="radio" name="notifications[notification_messages_new_message]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_messages_new_message', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_messages_new_message', true ) ) { ?>checked="checked" <?php } ?>/></td> 179 <td class="no"><input type="radio" name="notifications[notification_messages_new_message]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_messages_new_message', true ) ) { ?>checked="checked" <?php } ?>/></td> 180 180 </tr> 181 181 <tr> 182 182 <td></td> 183 183 <td><?php _e( 'A new site notice is posted', 'buddypress' ) ?></td> 184 <td class="yes"><input type="radio" name="notifications[notification_messages_new_notice]" value="yes" <?php if ( !get_user meta( $current_user->id, 'notification_messages_new_notice' ) || 'yes' == get_usermeta( $current_user->id, 'notification_messages_new_notice') ) { ?>checked="checked" <?php } ?>/></td>185 <td class="no"><input type="radio" name="notifications[notification_messages_new_notice]" value="no" <?php if ( 'no' == get_user meta( $current_user->id, 'notification_messages_new_notice') ) { ?>checked="checked" <?php } ?>/></td>184 <td class="yes"><input type="radio" name="notifications[notification_messages_new_notice]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_messages_new_notice', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_messages_new_notice', true ) ) { ?>checked="checked" <?php } ?>/></td> 185 <td class="no"><input type="radio" name="notifications[notification_messages_new_notice]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_messages_new_notice', true ) ) { ?>checked="checked" <?php } ?>/></td> 186 186 </tr> 187 187 188 188 <?php do_action( 'messages_screen_notification_settings' ) ?> -
bp-forums.php
500 500 function bp_forums_filter_caps( $allcaps ) { 501 501 global $bp, $wp_roles, $bb_table_prefix; 502 502 503 $bb_cap = get_user meta( $bp->loggedin_user->id, $bb_table_prefix . 'capabilities');503 $bb_cap = get_user_meta( $bp->loggedin_user->id, $bb_table_prefix . 'capabilities', true ); 504 504 505 505 if ( empty( $bb_cap ) ) 506 506 return $allcaps; -
bp-groups.php
894 894 <tr> 895 895 <td></td> 896 896 <td><?php _e( 'A member invites you to join a group', 'buddypress' ) ?></td> 897 <td class="yes"><input type="radio" name="notifications[notification_groups_invite]" value="yes" <?php if ( !get_user meta( $current_user->id, 'notification_groups_invite') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_invite') ) { ?>checked="checked" <?php } ?>/></td>898 <td class="no"><input type="radio" name="notifications[notification_groups_invite]" value="no" <?php if ( 'no' == get_user meta( $current_user->id, 'notification_groups_invite') ) { ?>checked="checked" <?php } ?>/></td>897 <td class="yes"><input type="radio" name="notifications[notification_groups_invite]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_groups_invite', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_groups_invite', true ) ) { ?>checked="checked" <?php } ?>/></td> 898 <td class="no"><input type="radio" name="notifications[notification_groups_invite]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_groups_invite', true ) ) { ?>checked="checked" <?php } ?>/></td> 899 899 </tr> 900 900 <tr> 901 901 <td></td> 902 902 <td><?php _e( 'Group information is updated', 'buddypress' ) ?></td> 903 <td class="yes"><input type="radio" name="notifications[notification_groups_group_updated]" value="yes" <?php if ( !get_user meta( $current_user->id, 'notification_groups_group_updated') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_group_updated') ) { ?>checked="checked" <?php } ?>/></td>904 <td class="no"><input type="radio" name="notifications[notification_groups_group_updated]" value="no" <?php if ( 'no' == get_user meta( $current_user->id, 'notification_groups_group_updated') ) { ?>checked="checked" <?php } ?>/></td>903 <td class="yes"><input type="radio" name="notifications[notification_groups_group_updated]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_groups_group_updated', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_groups_group_updated', true ) ) { ?>checked="checked" <?php } ?>/></td> 904 <td class="no"><input type="radio" name="notifications[notification_groups_group_updated]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_groups_group_updated', true ) ) { ?>checked="checked" <?php } ?>/></td> 905 905 </tr> 906 906 <tr> 907 907 <td></td> 908 908 <td><?php _e( 'You are promoted to a group administrator or moderator', 'buddypress' ) ?></td> 909 <td class="yes"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="yes" <?php if ( !get_user meta( $current_user->id, 'notification_groups_admin_promotion') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_admin_promotion') ) { ?>checked="checked" <?php } ?>/></td>910 <td class="no"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="no" <?php if ( 'no' == get_user meta( $current_user->id, 'notification_groups_admin_promotion') ) { ?>checked="checked" <?php } ?>/></td>909 <td class="yes"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_groups_admin_promotion', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_groups_admin_promotion', true ) ) { ?>checked="checked" <?php } ?>/></td> 910 <td class="no"><input type="radio" name="notifications[notification_groups_admin_promotion]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_groups_admin_promotion', true ) ) { ?>checked="checked" <?php } ?>/></td> 911 911 </tr> 912 912 <tr> 913 913 <td></td> 914 914 <td><?php _e( 'A member requests to join a private group for which you are an admin', 'buddypress' ) ?></td> 915 <td class="yes"><input type="radio" name="notifications[notification_groups_membership_request]" value="yes" <?php if ( !get_user meta( $current_user->id, 'notification_groups_membership_request') || 'yes' == get_usermeta( $current_user->id, 'notification_groups_membership_request') ) { ?>checked="checked" <?php } ?>/></td>916 <td class="no"><input type="radio" name="notifications[notification_groups_membership_request]" value="no" <?php if ( 'no' == get_user meta( $current_user->id, 'notification_groups_membership_request') ) { ?>checked="checked" <?php } ?>/></td>915 <td class="yes"><input type="radio" name="notifications[notification_groups_membership_request]" value="yes" <?php if ( !get_user_meta( $current_user->id, 'notification_groups_membership_request', true ) || 'yes' == get_user_meta( $current_user->id, 'notification_groups_membership_request', true ) ) { ?>checked="checked" <?php } ?>/></td> 916 <td class="no"><input type="radio" name="notifications[notification_groups_membership_request]" value="no" <?php if ( 'no' == get_user_meta( $current_user->id, 'notification_groups_membership_request', true ) ) { ?>checked="checked" <?php } ?>/></td> 917 917 </tr> 918 918 919 919 <?php do_action( 'groups_screen_notification_settings' ); ?> … … 1564 1564 return false; 1565 1565 1566 1566 /* Modify group member count */ 1567 groups_update_groupmeta( $group_id, 'total_member_count', (int) groups_get_groupmeta( $group_id, 'total_member_count' ) - 1 );1567 groups_update_groupmeta( $group_id, 'total_member_count', (int) groups_get_groupmeta( $group_id, 'total_member_count' ) - 1 ); 1568 1568 1569 1569 /* Modify user's group memberhip count */ 1570 update_user meta( $user_id, 'total_group_count', (int) get_usermeta( $user_id, 'total_group_count') - 1 );1570 update_user_meta( $user_id, 'total_group_count', (int) get_user_meta( $user_id, 'total_group_count', true ) - 1 ); 1571 1571 1572 1572 /* If the user joined this group less than five minutes ago, remove the joined_group activity so 1573 1573 * users cannot flood the activity stream by joining/leaving the group in quick succession. … … 2191 2191 if ( !$member->ban() ) 2192 2192 return false; 2193 2193 2194 update_user meta( $user_id, 'total_group_count', (int)$total_count - 1 );2194 update_user_meta( $user_id, 'total_group_count', (int)$total_count - 1 ); 2195 2195 } 2196 2196 2197 2197 function groups_unban_member( $user_id, $group_id ) { -
bp-messages/bp-messages-notifications.php
7 7 $sender_name = bp_core_get_user_displayname( $sender_id ); 8 8 9 9 foreach( $recipients as $recipient ) { 10 if ( $sender_id == $recipient->user_id || 'no' == get_user meta( $recipient->user_id, 'notification_messages_new_message') ) continue;10 if ( $sender_id == $recipient->user_id || 'no' == get_user_meta( $recipient->user_id, 'notification_messages_new_message', true ) ) continue; 11 11 12 12 $ud = get_userdata( $recipient->user_id ); 13 13 $message_link = bp_core_get_user_domain( $recipient->user_id ) . BP_MESSAGES_SLUG .'/'; -
bp-messages/bp-messages-templatetags.php
455 455 if ( empty( $notice ) ) 456 456 return false; 457 457 458 $closed_notices = get_user meta( $userdata->ID, 'closed_notices');458 $closed_notices = get_user_meta( $userdata->ID, 'closed_notices', true ); 459 459 460 460 if ( !$closed_notices ) 461 461 $closed_notices = array(); -
bp-messages/bp-messages-classes.php
401 401 // Now deactivate all notices apart from the new one. 402 402 $wpdb->query( $wpdb->prepare( "UPDATE {$bp->messages->table_name_notices} SET is_active = 0 WHERE id != %d", $id ) ); 403 403 404 update_user meta( $bp->loggedin_user->id, 'last_activity', date( 'Y-m-d H:i:s' ) );404 update_user_meta( $bp->loggedin_user->id, 'last_activity', date( 'Y-m-d H:i:s' ) ); 405 405 406 406 do_action( 'messages_notice_after_save', $this ); 407 407 -
bp-forums/bp-forums-bbpress.php
103 103 /* Set the site admins as the keymasters */ 104 104 $site_admins = get_site_option( 'site_admins', array('admin') ); 105 105 foreach ( (array)$site_admins as $site_admin ) 106 update_user meta( bp_core_get_userid( $site_admin ), $bb_table_prefix . 'capabilities', array( 'keymaster' => true ) );106 update_user_meta( bp_core_get_userid( $site_admin ), $bb_table_prefix . 'capabilities', array( 'keymaster' => true ) ); 107 107 108 108 // Create the first forum. 109 109 bb_new_forum( array( 'forum_name' => 'Default Forum' ) ); … … 130 130 $args = wp_parse_args( $args, $defaults ); 131 131 extract( $args, EXTR_SKIP ); 132 132 133 return update_user meta( $id, $meta_key, $meta_value );133 return update_user_meta( $id, $meta_key, $meta_value ); 134 134 } 135 135 } 136 136 -
bp-core.php
513 513 * @package BuddyPress Core 514 514 * @global $current_user WordPress global variable containing current logged in user information 515 515 * @param user_id The ID of the user. 516 * @uses get_user meta() WordPress function to get the usermeta for a user.516 * @uses get_user_meta() WordPress function to get the usermeta for a user. 517 517 */ 518 518 function bp_core_get_user_domain( $user_id, $user_nicename = false, $user_login = false ) { 519 519 global $bp; … … 1384 1384 * 1385 1385 * @package BuddyPress Core 1386 1386 * @global $userdata WordPress user data for the current logged in user. 1387 * @uses update_user meta() WordPress function to update user metadata in the usermeta table.1387 * @uses update_user_meta() WordPress function to update user metadata in the usermeta table. 1388 1388 */ 1389 1389 function bp_core_record_activity() { 1390 1390 global $bp; … … 1392 1392 if ( !is_user_logged_in() ) 1393 1393 return false; 1394 1394 1395 $activity = get_user meta( $bp->loggedin_user->id, 'last_activity');1395 $activity = get_user_meta( $bp->loggedin_user->id, 'last_activity', true ); 1396 1396 1397 1397 if ( !is_numeric( $activity ) ) 1398 1398 $activity = strtotime( $activity ); 1399 1399 1400 1400 if ( '' == $activity || strtotime( gmdate( "Y-m-d H:i:s" ) ) >= strtotime( '+5 minutes', $activity ) ) 1401 update_user meta( $bp->loggedin_user->id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );1401 update_user_meta( $bp->loggedin_user->id, 'last_activity', gmdate( "Y-m-d H:i:s" ) ); 1402 1402 } 1403 1403 add_action( 'wp_head', 'bp_core_record_activity' ); 1404 1404 … … 1825 1825 * 1826 1826 * @package BuddyPress Core 1827 1827 * @param $user_id The user id for the user to delete usermeta for 1828 * @uses delete_user meta() deletes a row from the wp_usermeta table based on meta_key1828 * @uses delete_user_meta() deletes a row from the wp_usermeta table based on meta_key 1829 1829 */ 1830 1830 function bp_core_remove_data( $user_id ) { 1831 1831 /* Remove usermeta */ 1832 delete_user meta( $user_id, 'last_activity' );1832 delete_user_meta( $user_id, 'last_activity' ); 1833 1833 1834 1834 /* Flush the cache to remove the user from all cached objects */ 1835 1835 wp_cache_flush(); -
bp-xprofile.php
838 838 $lastname = trim( substr( $fullname, $space, strlen($fullname) ) ); 839 839 } 840 840 841 update_user meta( $user_id, 'nickname', $fullname );842 update_user meta( $user_id, 'first_name', $firstname );843 update_user meta( $user_id, 'last_name', $lastname );841 update_user_meta( $user_id, 'nickname', $fullname ); 842 update_user_meta( $user_id, 'first_name', $firstname ); 843 update_user_meta( $user_id, 'last_name', $lastname ); 844 844 845 845 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET display_name = %s WHERE ID = %d", $fullname, $user_id ) ); 846 846 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_url = %s WHERE ID = %d", bp_core_get_user_domain( $user_id ), $user_id ) ); … … 874 874 * 875 875 * @package BuddyPress XProfile 876 876 * @param $user_id The ID of the deleted user 877 * @uses get_user meta() Get a user meta value based on meta key from wp_usermeta878 * @uses delete_user meta() Delete user meta value based on meta key from wp_usermeta877 * @uses get_user_meta() Get a user meta value based on meta key from wp_usermeta 878 * @uses delete_user_meta() Delete user meta value based on meta key from wp_usermeta 879 879 * @uses delete_data_for_user() Removes all profile data from the xprofile tables for the user 880 880 */ 881 881 function xprofile_remove_data( $user_id ) { 882 882 BP_XProfile_ProfileData::delete_data_for_user( $user_id ); 883 883 884 884 /* delete any avatar files. */ 885 @unlink( get_user meta( $user_id, 'bp_core_avatar_v1_path') );886 @unlink( get_user meta( $user_id, 'bp_core_avatar_v2_path') );885 @unlink( get_user_meta( $user_id, 'bp_core_avatar_v1_path', true ) ); 886 @unlink( get_user_meta( $user_id, 'bp_core_avatar_v2_path', true ) ); 887 887 888 888 /* unset the usermeta for avatars from the usermeta table. */ 889 delete_user meta( $user_id, 'bp_core_avatar_v1' );890 delete_user meta( $user_id, 'bp_core_avatar_v1_path' );891 delete_user meta( $user_id, 'bp_core_avatar_v2' );892 delete_user meta( $user_id, 'bp_core_avatar_v2_path' );889 delete_user_meta( $user_id, 'bp_core_avatar_v1' ); 890 delete_user_meta( $user_id, 'bp_core_avatar_v1_path' ); 891 delete_user_meta( $user_id, 'bp_core_avatar_v2' ); 892 delete_user_meta( $user_id, 'bp_core_avatar_v2_path' ); 893 893 } 894 894 add_action( 'wpmu_delete_user', 'xprofile_remove_data', 1 ); 895 895 add_action( 'delete_user', 'xprofile_remove_data', 1 ); -
bp-groups/bp-groups-classes.php
742 742 743 743 groups_update_groupmeta( $this->group_id, 'total_member_count', ( (int) groups_get_groupmeta( $this->group_id, 'total_member_count' ) - 1 ) ); 744 744 745 $group_count = get_user meta( $this->user_id, 'total_group_count');745 $group_count = get_user_meta( $this->user_id, 'total_group_count', true ); 746 746 if ( !empty( $group_count ) ) 747 update_user meta( $this->user_id, 'total_group_count', (int)$group_count - 1 );747 update_user_meta( $this->user_id, 'total_group_count', (int)$group_count - 1 ); 748 748 749 749 return $this->save(); 750 750 } … … 756 756 $this->is_banned = 0; 757 757 758 758 groups_update_groupmeta( $this->group_id, 'total_member_count', ( (int) groups_get_groupmeta( $this->group_id, 'total_member_count' ) + 1 ) ); 759 update_user meta( $this->user_id, 'total_group_count', (int)get_usermeta( $this->user_id, 'total_group_count') + 1 );759 update_user_meta( $this->user_id, 'total_group_count', (int)get_user_meta( $this->user_id, 'total_group_count', true ) + 1 ); 760 760 761 761 return $this->save(); 762 762 } -
bp-groups/bp-groups-notifications.php
8 8 9 9 $user_ids = BP_Groups_Member::get_group_member_ids( $group->id ); 10 10 foreach ( (array)$user_ids as $user_id ) { 11 if ( 'no' == get_user meta( $user_id, 'notification_groups_group_updated') ) continue;11 if ( 'no' == get_user_meta( $user_id, 'notification_groups_group_updated', true ) ) continue; 12 12 13 13 $ud = bp_core_get_core_userdata( $user_id ); 14 14 … … 44 44 45 45 bp_core_add_notification( $requesting_user_id, $admin_id, 'groups', 'new_membership_request', $group_id ); 46 46 47 if ( 'no' == get_user meta( $admin_id, 'notification_groups_membership_request') )47 if ( 'no' == get_user_meta( $admin_id, 'notification_groups_membership_request', true ) ) 48 48 return false; 49 49 50 50 $requesting_user_name = bp_core_get_user_displayname( $requesting_user_id ); … … 93 93 else 94 94 bp_core_add_notification( $group_id, $requesting_user_id, 'groups', 'membership_request_rejected' ); 95 95 96 if ( 'no' == get_user meta( $requesting_user_id, 'notification_membership_request_completed') )96 if ( 'no' == get_user_meta( $requesting_user_id, 'notification_membership_request_completed', true ) ) 97 97 return false; 98 98 99 99 $group = new BP_Groups_Group( $group_id ); … … 151 151 // Post a screen notification first. 152 152 bp_core_add_notification( $group_id, $user_id, 'groups', $type ); 153 153 154 if ( 'no' == get_user meta( $user_id, 'notification_groups_admin_promotion') )154 if ( 'no' == get_user_meta( $user_id, 'notification_groups_admin_promotion', true ) ) 155 155 return false; 156 156 157 157 $group = new BP_Groups_Group( $group_id ); … … 199 199 // Post a screen notification first. 200 200 bp_core_add_notification( $group->id, $invited_user_id, 'groups', 'group_invite' ); 201 201 202 if ( 'no' == get_user meta( $invited_user_id, 'notification_groups_invite') )202 if ( 'no' == get_user_meta( $invited_user_id, 'notification_groups_invite', true ) ) 203 203 return false; 204 204 205 205 $invited_ud = bp_core_get_core_userdata($invited_user_id); … … 258 258 continue; 259 259 260 260 // Now email the user with the contents of the message (if they have enabled email notifications) 261 if ( 'no' != get_user meta( $user_id, 'notification_activity_new_mention') ) {261 if ( 'no' != get_user_meta( $user_id, 'notification_activity_new_mention', true ) ) { 262 262 $poster_name = bp_core_get_user_displayname( $poster_user_id ); 263 263 264 264 $message_link = bp_activity_get_permalink( $activity_id );