Ticket #2523: 2523.001.diff
File 2523.001.diff, 51.0 KB (added by , 15 years ago) |
---|
-
bp-friends.php
155 155 <tr> 156 156 <td></td> 157 157 <td><?php _e( 'A member sends you a friendship request', 'buddypress' ) ?></td> 158 <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>159 <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>158 <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> 159 <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> 160 160 </tr> 161 161 <tr> 162 162 <td></td> 163 163 <td><?php _e( 'A member accepts your friendship request', 'buddypress' ) ?></td> 164 <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>165 <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>164 <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> 165 <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> 166 166 </tr> 167 167 168 168 <?php do_action( 'friends_screen_notification_settings' ); ?> … … 487 487 $user_id = ( $bp->displayed_user->id ) ? $bp->displayed_user->id : $bp->loggedin_user->id; 488 488 489 489 if ( !$count = wp_cache_get( 'bp_total_friend_count_' . $user_id, 'bp' ) ) { 490 $count = get_user meta( $user_id, 'total_friend_count');490 $count = get_user_meta( $user_id, 'total_friend_count', true ); 491 491 if ( empty( $count ) ) $count = 0; 492 492 wp_cache_set( 'bp_total_friend_count_' . $user_id, $count, 'bp' ); 493 493 } … … 590 590 591 591 function friends_update_friend_totals( $initiator_user_id, $friend_user_id, $status = 'add' ) { 592 592 if ( 'add' == $status ) { 593 update_user meta( $initiator_user_id, 'total_friend_count', (int)get_usermeta( $initiator_user_id, 'total_friend_count') + 1 );594 update_user meta( $friend_user_id, 'total_friend_count', (int)get_usermeta( $friend_user_id, 'total_friend_count') + 1 );593 update_user_meta( $initiator_user_id, 'total_friend_count', (int)get_user_meta( $initiator_user_id, 'total_friend_count', true ) + 1 ); 594 update_user_meta( $friend_user_id, 'total_friend_count', (int)get_user_meta( $friend_user_id, 'total_friend_count', true ) + 1 ); 595 595 } else { 596 update_user meta( $initiator_user_id, 'total_friend_count', (int)get_usermeta( $initiator_user_id, 'total_friend_count') - 1 );597 update_user meta( $friend_user_id, 'total_friend_count', (int)get_usermeta( $friend_user_id, 'total_friend_count') - 1 );596 update_user_meta( $initiator_user_id, 'total_friend_count', (int)get_user_meta( $initiator_user_id, 'total_friend_count', true ) - 1 ); 597 update_user_meta( $friend_user_id, 'total_friend_count', (int)get_user_meta( $friend_user_id, 'total_friend_count', true ) - 1 ); 598 598 } 599 599 } 600 600 … … 602 602 BP_Friends_Friendship::delete_all_for_user($user_id); 603 603 604 604 /* Remove usermeta */ 605 delete_user meta( $user_id, 'total_friend_count' );605 delete_user_meta( $user_id, 'total_friend_count' ); 606 606 607 607 /* Remove friendship requests FROM user */ 608 608 bp_core_delete_notifications_from_user( $user_id, $bp->friends->id, 'friendship_request' ); -
bp-activity.php
275 275 <tr> 276 276 <td></td> 277 277 <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> 278 <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>279 <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>278 <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> 279 <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> 280 280 </tr> 281 281 <tr> 282 282 <td></td> 283 283 <td><?php printf( __( "A member replies to an update or comment you've posted", 'buddypress' ), $current_user->user_login ) ?></td> 284 <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>285 <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>284 <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> 285 <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> 286 286 </tr> 287 287 288 288 <?php do_action( 'bp_activity_screen_notification_settings' ) ?> … … 710 710 ) ); 711 711 712 712 /* Add this update to the "latest update" usermeta so it can be fetched anywhere. */ 713 update_user meta( $bp->loggedin_user->id, 'bp_latest_update', array( 'id' => $activity_id, 'content' => wp_filter_kses( $content ) ) );713 update_user_meta( $bp->loggedin_user->id, 'bp_latest_update', array( 'id' => $activity_id, 'content' => wp_filter_kses( $content ) ) ); 714 714 715 715 /* Require the notifications code so email notifications can be set on the 'bp_activity_posted_update' action. */ 716 716 require_once( BP_PLUGIN_DIR . '/bp-activity/bp-activity-notifications.php' ); … … 837 837 else 838 838 $user_id = $args['user_id']; 839 839 840 $latest_update = get_user meta( $user_id, 'bp_latest_update');840 $latest_update = get_user_meta( $user_id, 'bp_latest_update', true ); 841 841 if ( !empty( $latest_update ) ) { 842 842 if ( in_array( (int)$latest_update['id'], (array)$activity_ids_deleted ) ) 843 delete_user meta( $user_id, 'bp_latest_update' );843 delete_user_meta( $user_id, 'bp_latest_update' ); 844 844 } 845 845 846 846 do_action( 'bp_activity_delete', $args ); … … 991 991 } 992 992 993 993 function bp_activity_get_user_favorites( $user_id ) { 994 $my_favs = maybe_unserialize( get_user meta( $user_id, 'bp_favorite_activities') );994 $my_favs = maybe_unserialize( get_user_meta( $user_id, 'bp_favorite_activities', true ) ); 995 995 $existing_favs = bp_activity_get_specific( array( 'activity_ids' => $my_favs ) ); 996 996 997 997 foreach( (array)$existing_favs['activities'] as $fav ) 998 998 $new_favs[] = $fav->id; 999 999 1000 1000 $new_favs = array_unique( (array)$new_favs ); 1001 update_user meta( $user_id, 'bp_favorite_activities', $new_favs );1001 update_user_meta( $user_id, 'bp_favorite_activities', $new_favs ); 1002 1002 1003 1003 return apply_filters( 'bp_activity_get_user_favorites', $new_favs ); 1004 1004 } … … 1010 1010 $user_id = $bp->loggedin_user->id; 1011 1011 1012 1012 /* Update the user's personal favorites */ 1013 $my_favs = maybe_unserialize( get_user meta( $bp->loggedin_user->id, 'bp_favorite_activities') );1013 $my_favs = maybe_unserialize( get_user_meta( $bp->loggedin_user->id, 'bp_favorite_activities', true ) ); 1014 1014 $my_favs[] = $activity_id; 1015 1015 1016 1016 /* Update the total number of users who have favorited this activity */ … … 1021 1021 else 1022 1022 $fav_count = 1; 1023 1023 1024 update_user meta( $bp->loggedin_user->id, 'bp_favorite_activities', $my_favs );1024 update_user_meta( $bp->loggedin_user->id, 'bp_favorite_activities', $my_favs ); 1025 1025 bp_activity_update_meta( $activity_id, 'favorite_count', $fav_count ); 1026 1026 1027 1027 do_action( 'bp_activity_add_user_favorite', $activity_id, $user_id ); … … 1036 1036 $user_id = $bp->loggedin_user->id; 1037 1037 1038 1038 /* Remove the fav from the user's favs */ 1039 $my_favs = maybe_unserialize( get_user meta( $user_id, 'bp_favorite_activities') );1039 $my_favs = maybe_unserialize( get_user_meta( $user_id, 'bp_favorite_activities', true ) ); 1040 1040 $my_favs = array_flip( (array) $my_favs ); 1041 1041 unset( $my_favs[$activity_id] ); 1042 1042 $my_favs = array_unique( array_flip( $my_favs ) ); … … 1049 1049 bp_activity_update_meta( $activity_id, 'favorite_count', $fav_count ); 1050 1050 } 1051 1051 1052 update_user meta( $user_id, 'bp_favorite_activities', $my_favs );1052 update_user_meta( $user_id, 'bp_favorite_activities', $my_favs ); 1053 1053 1054 1054 do_action( 'bp_activity_remove_user_favorite', $activity_id, $user_id ); 1055 1055 … … 1171 1171 bp_activity_delete( array( 'user_id' => $user_id ) ); 1172 1172 1173 1173 // Remove any usermeta 1174 delete_user meta( $user_id, 'bp_latest_update' );1175 delete_user meta( $user_id, 'bp_favorite_activities' );1174 delete_user_meta( $user_id, 'bp_latest_update' ); 1175 delete_user_meta( $user_id, 'bp_favorite_activities' ); 1176 1176 1177 1177 do_action( 'bp_activity_remove_data', $user_id ); 1178 1178 } -
bp-themes/bp-default/_inc/ajax.php
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-core/bp-core-signup.php
424 424 if ( apply_filters( 'bp_core_signup_send_activation_key', true ) ) { 425 425 if ( !bp_core_is_multisite() ) { 426 426 $activation_key = wp_hash( $user_id ); 427 update_user meta( $user_id, 'activation_key', $activation_key );427 update_user_meta( $user_id, 'activation_key', $activation_key ); 428 428 bp_core_signup_send_validation_email( $user_id, $user_email, $activation_key ); 429 429 } 430 430 } … … 487 487 wp_new_user_notification( $user_id ); 488 488 489 489 /* Remove the activation key meta */ 490 delete_user meta( $user_id, 'activation_key' );490 delete_user_meta( $user_id, 'activation_key' ); 491 491 } 492 492 493 493 /* Update the user_url and display_name */ 494 494 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 ) ) ); 495 495 496 496 /* Add a last active entry */ 497 update_user meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );497 update_user_meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) ); 498 498 499 499 /* Set the password on multisite installs */ 500 500 if ( bp_core_is_multisite() && !empty( $user['meta']['password'] ) ) … … 537 537 return false; 538 538 539 539 /* Add a last active entry */ 540 update_user meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );540 update_user_meta( $user_id, 'last_activity', gmdate( "Y-m-d H:i:s" ) ); 541 541 542 542 /* Add the user's fullname to Xprofile */ 543 543 if ( function_exists( 'xprofile_set_field_data' ) ) { 544 $firstname = get_user meta( $user_id, 'first_name');545 $lastname = ' ' . get_user meta( $user_id, 'last_name');544 $firstname = get_user_meta( $user_id, 'first_name', true ); 545 $lastname = ' ' . get_user_meta( $user_id, 'last_name', true ); 546 546 $name = $firstname . $lastname; 547 547 548 548 if ( empty( $name ) || ' ' == $name ) 549 $name = get_user meta( $user_id, 'nickname');549 $name = get_user_meta( $user_id, 'nickname', true ); 550 550 551 551 xprofile_set_field_data( 1, $user_id, $name ); 552 552 } -
bp-core/bp-core-templatetags.php
1331 1331 if ( !$user_id ) 1332 1332 $user_id = $bp->displayed_user->id; 1333 1333 1334 $last_activity = bp_core_get_last_activity( get_user meta( $user_id, 'last_activity'), __('active %s ago', 'buddypress') );1334 $last_activity = bp_core_get_last_activity( get_user_meta( $user_id, 'last_activity', true ), __('active %s ago', 'buddypress') ); 1335 1335 1336 1336 if ( $echo ) 1337 1337 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-xprofile/bp-xprofile-templatetags.php
646 646 function bp_get_profile_last_updated() { 647 647 global $bp; 648 648 649 $last_updated = get_user meta( $bp->displayed_user->id, 'profile_last_updated');649 $last_updated = get_user_meta( $bp->displayed_user->id, 'profile_last_updated', true ); 650 650 651 651 if ( $last_updated ) 652 652 return apply_filters( 'bp_get_profile_last_updated', sprintf( __('Profile updated %s ago', 'buddypress'), bp_core_time_since( strtotime( $last_updated ) ) ) ); -
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 ); … … 18 18 19 19 // Set up and send the message 20 20 $to = $ud->user_email; 21 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( 'New friendship request from %s', 'buddypress' ), $initiator_name );21 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( 'New friendship request from %s', 'buddypress' ), $initiator_name ); 22 22 23 23 $message = sprintf( __( 24 24 "%s wants to add you as a friend. … … 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 ); … … 57 57 58 58 // Set up and send the message 59 59 $to = $ud->user_email; 60 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( '%s accepted your friendship request', 'buddypress' ), $friend_name );60 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( '%s accepted your friendship request', 'buddypress' ), $friend_name ); 61 61 62 62 $message = sprintf( __( 63 63 '%s accepted your friend request. -
bp-friends/bp-friends-classes.php
127 127 $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(id) FROM {$bp->friends->table_name} WHERE (initiator_user_id = %d OR friend_user_id = %d) AND is_confirmed = 1", $user_id, $user_id ) ); 128 128 129 129 // Do not update meta if user has never had friends 130 if ( !$count && !get_user meta( $user_id, 'total_friend_count') )130 if ( !$count && !get_user_meta( $user_id, 'total_friend_count', true ) ) 131 131 return 0; 132 132 133 update_user meta( $user_id, 'total_friend_count', (int)$count );133 update_user_meta( $user_id, 'total_friend_count', (int)$count ); 134 134 return (int)$count; 135 135 } 136 136 -
bp-activity/bp-activity-filters.php
114 114 continue; 115 115 116 116 /* Increase the number of new @ mentions for the user */ 117 $new_mention_count = (int)get_user meta( $user_id, 'bp_new_mention_count');118 update_user meta( $user_id, 'bp_new_mention_count', $new_mention_count + 1 );117 $new_mention_count = (int)get_user_meta( $user_id, 'bp_new_mention_count', true ); 118 update_user_meta( $user_id, 'bp_new_mention_count', $new_mention_count + 1 ); 119 119 120 120 $content = str_replace( "@$username", "<a href='" . bp_core_get_user_domain( bp_core_get_userid( $username ) ) . "' rel='nofollow'>@$username</a>", $content ); 121 121 } -
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( $receiver_user_id, 'notification_activity_new_mention') ) {19 if ( 'no' != get_user_meta( $receiver_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 ); … … 28 28 // Set up and send the message 29 29 $ud = bp_core_get_core_userdata( $receiver_user_id ); 30 30 $to = $ud->user_email; 31 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( '%s mentioned you in an update', 'buddypress' ), $poster_name );31 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( '%s mentioned you in an update', 'buddypress' ), $poster_name ); 32 32 33 33 $message = sprintf( __( 34 34 '%s mentioned you in an update: … … 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/'; … … 71 71 // Set up and send the message 72 72 $ud = bp_core_get_core_userdata( $original_activity->user_id ); 73 73 $to = $ud->user_email; 74 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( '%s replied to one of your updates', 'buddypress' ), $poster_name );74 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( '%s replied to one of your updates', 'buddypress' ), $poster_name ); 75 75 76 76 $message = sprintf( __( 77 77 '%s replied to one of your updates: … … 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/'; … … 110 110 // Set up and send the message 111 111 $ud = bp_core_get_core_userdata( $parent_comment->user_id ); 112 112 $to = $ud->user_email; 113 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( '%s replied to one of your comments', 'buddypress' ), $poster_name );113 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( '%s replied to one of your comments', 'buddypress' ), $poster_name ); 114 114 115 115 $poster_name = stripslashes( $poster_name ); 116 116 $content = bp_activity_filter_kses( stripslashes( $content ) ); -
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_user meta( $bp->loggedin_user->id, 'bp_favorite_activities') );28 $this->my_favs = maybe_unserialize( 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 */ … … 729 729 if ( !$user_id ) 730 730 $user_id = $bp->displayed_user->id; 731 731 732 if ( !$update = get_user meta( $user_id, 'bp_latest_update') )732 if ( !$update = get_user_meta( $user_id, 'bp_latest_update', true ) ) 733 733 return false; 734 734 735 735 $latest_update = '"' . apply_filters( 'bp_get_activity_latest_update_excerpt', trim( strip_tags( bp_create_excerpt( $update['content'], 40 ) ) ) ) . '"'; … … 831 831 echo bp_get_total_favorite_count_for_user( $user_id ); 832 832 } 833 833 function bp_get_total_mention_count_for_user( $user_id = false ) { 834 return apply_filters( 'bp_get_total_mention_count_for_user', get_user meta( $user_id, 'bp_new_mention_count') );834 return apply_filters( 'bp_get_total_mention_count_for_user', get_user_meta( $user_id, 'bp_new_mention_count', true ) ); 835 835 } 836 836 837 837 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 537 return count( maybe_unserialize( $favorite_activity_entries ) ); -
bp-messages.php
249 249 <tr> 250 250 <td></td> 251 251 <td><?php _e( 'A member sends you a new message', 'buddypress' ) ?></td> 252 <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>253 <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>252 <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> 253 <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> 254 254 </tr> 255 255 <tr> 256 256 <td></td> 257 257 <td><?php _e( 'A new site notice is posted', 'buddypress' ) ?></td> 258 <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>259 <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>258 <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> 259 <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> 260 260 </tr> 261 261 262 262 <?php do_action( 'messages_screen_notification_settings' ) ?> -
bp-forums.php
527 527 function bp_forums_filter_caps( $allcaps ) { 528 528 global $bp, $wp_roles, $bb_table_prefix; 529 529 530 $bb_cap = get_user meta( $bp->loggedin_user->id, $bb_table_prefix . 'capabilities');530 $bb_cap = get_user_meta( $bp->loggedin_user->id, $bb_table_prefix . 'capabilities', true ); 531 531 532 532 if ( empty( $bb_cap ) ) 533 533 return $allcaps; -
bp-groups.php
974 974 <tr> 975 975 <td></td> 976 976 <td><?php _e( 'A member invites you to join a group', 'buddypress' ) ?></td> 977 <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>978 <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>977 <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> 978 <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> 979 979 </tr> 980 980 <tr> 981 981 <td></td> 982 982 <td><?php _e( 'Group information is updated', 'buddypress' ) ?></td> 983 <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>984 <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>983 <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> 984 <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> 985 985 </tr> 986 986 <tr> 987 987 <td></td> 988 988 <td><?php _e( 'You are promoted to a group administrator or moderator', 'buddypress' ) ?></td> 989 <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>990 <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>989 <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> 990 <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> 991 991 </tr> 992 992 <tr> 993 993 <td></td> 994 994 <td><?php _e( 'A member requests to join a private group for which you are an admin', 'buddypress' ) ?></td> 995 <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>996 <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>995 <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> 996 <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> 997 997 </tr> 998 998 999 999 <?php do_action( 'groups_screen_notification_settings' ); ?> … … 1687 1687 groups_update_groupmeta( $group_id, 'total_member_count', (int) groups_get_groupmeta( $group_id, 'total_member_count') - 1 ); 1688 1688 1689 1689 /* Modify user's group memberhip count */ 1690 update_user meta( $user_id, 'total_group_count', (int) get_usermeta( $user_id, 'total_group_count') - 1 );1690 update_user_meta( $user_id, 'total_group_count', (int) get_user_meta( $user_id, 'total_group_count', true ) - 1 ); 1691 1691 1692 1692 /* If the user joined this group less than five minutes ago, remove the joined_group activity so 1693 1693 * users cannot flood the activity stream by joining/leaving the group in quick succession. … … 2337 2337 if ( !$member->ban() ) 2338 2338 return false; 2339 2339 2340 update_user meta( $user_id, 'total_group_count', (int)$total_count - 1 );2340 update_user_meta( $user_id, 'total_group_count', (int)$total_count - 1 ); 2341 2341 } 2342 2342 2343 2343 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 .'/'; … … 19 19 20 20 // Set up and send the message 21 21 $email_to = $ud->user_email; 22 $email_subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( 'New message from %s', 'buddypress' ), $sender_name );22 $email_subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( 'New message from %s', 'buddypress' ), $sender_name ); 23 23 24 24 $email_content = sprintf( __( 25 25 '%s sent you a new message: -
bp-messages/bp-messages-templatetags.php
272 272 function bp_get_message_thread_last_post_date() { 273 273 global $messages_template; 274 274 275 return apply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( strtotime( $messages_template->thread->last_message_date) ) );275 return apply_filters( 'bp_get_message_thread_last_post_date', bp_format_time( get_date_from_gmt( $messages_template->thread->last_message_date, 'U' ) ) ); 276 276 } 277 277 278 278 function bp_message_thread_avatar() { … … 456 456 if ( empty( $notice ) ) 457 457 return false; 458 458 459 $closed_notices = get_user meta( $userdata->ID, 'closed_notices');459 $closed_notices = get_user_meta( $userdata->ID, 'closed_notices', true ); 460 460 461 461 if ( !$closed_notices ) 462 462 $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
556 556 * @package BuddyPress Core 557 557 * @global $current_user WordPress global variable containing current logged in user information 558 558 * @param user_id The ID of the user. 559 * @uses get_user meta() WordPress function to get the usermeta for a user.559 * @uses get_user_meta() WordPress function to get the usermeta for a user. 560 560 */ 561 561 function bp_core_get_user_domain( $user_id, $user_nicename = false, $user_login = false ) { 562 562 global $bp; … … 1475 1475 * 1476 1476 * @package BuddyPress Core 1477 1477 * @global $userdata WordPress user data for the current logged in user. 1478 * @uses update_user meta() WordPress function to update user metadata in the usermeta table.1478 * @uses update_user_meta() WordPress function to update user metadata in the usermeta table. 1479 1479 */ 1480 1480 function bp_core_record_activity() { 1481 1481 global $bp; … … 1483 1483 if ( !is_user_logged_in() ) 1484 1484 return false; 1485 1485 1486 $activity = get_user meta( $bp->loggedin_user->id, 'last_activity');1486 $activity = get_user_meta( $bp->loggedin_user->id, 'last_activity', true ); 1487 1487 1488 1488 if ( !is_numeric( $activity ) ) 1489 1489 $activity = strtotime( $activity ); 1490 1490 1491 1491 if ( '' == $activity || strtotime( gmdate( "Y-m-d H:i:s" ) ) >= strtotime( '+5 minutes', $activity ) ) 1492 update_user meta( $bp->loggedin_user->id, 'last_activity', gmdate( "Y-m-d H:i:s" ) );1492 update_user_meta( $bp->loggedin_user->id, 'last_activity', gmdate( "Y-m-d H:i:s" ) ); 1493 1493 } 1494 1494 add_action( 'wp_head', 'bp_core_record_activity' ); 1495 1495 … … 1926 1926 * 1927 1927 * @package BuddyPress Core 1928 1928 * @param $user_id The user id for the user to delete usermeta for 1929 * @uses delete_user meta() deletes a row from the wp_usermeta table based on meta_key1929 * @uses delete_user_meta() deletes a row from the wp_usermeta table based on meta_key 1930 1930 */ 1931 1931 function bp_core_remove_data( $user_id ) { 1932 1932 /* Remove usermeta */ 1933 delete_user meta( $user_id, 'last_activity' );1933 delete_user_meta( $user_id, 'last_activity' ); 1934 1934 1935 1935 /* Flush the cache to remove the user from all cached objects */ 1936 1936 wp_cache_flush(); -
bp-xprofile.php
908 908 $lastname = trim( substr( $fullname, $space, strlen($fullname) ) ); 909 909 } 910 910 911 update_user meta( $user_id, 'nickname', $fullname );912 update_user meta( $user_id, 'first_name', $firstname );913 update_user meta( $user_id, 'last_name', $lastname );911 update_user_meta( $user_id, 'nickname', $fullname ); 912 update_user_meta( $user_id, 'first_name', $firstname ); 913 update_user_meta( $user_id, 'last_name', $lastname ); 914 914 915 915 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET display_name = %s WHERE ID = %d", $fullname, $user_id ) ); 916 916 $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_url = %s WHERE ID = %d", bp_core_get_user_domain( $user_id ), $user_id ) ); … … 962 962 * 963 963 * @package BuddyPress XProfile 964 964 * @param $user_id The ID of the deleted user 965 * @uses get_user meta() Get a user meta value based on meta key from wp_usermeta966 * @uses delete_user meta() Delete user meta value based on meta key from wp_usermeta965 * @uses get_user_meta() Get a user meta value based on meta key from wp_usermeta 966 * @uses delete_user_meta() Delete user meta value based on meta key from wp_usermeta 967 967 * @uses delete_data_for_user() Removes all profile data from the xprofile tables for the user 968 968 */ 969 969 function xprofile_remove_data( $user_id ) { 970 970 BP_XProfile_ProfileData::delete_data_for_user( $user_id ); 971 971 972 972 // delete any avatar files. 973 @unlink( get_user meta( $user_id, 'bp_core_avatar_v1_path') );974 @unlink( get_user meta( $user_id, 'bp_core_avatar_v2_path') );973 @unlink( get_user_meta( $user_id, 'bp_core_avatar_v1_path', true ) ); 974 @unlink( get_user_meta( $user_id, 'bp_core_avatar_v2_path', true ) ); 975 975 976 976 // unset the usermeta for avatars from the usermeta table. 977 delete_user meta( $user_id, 'bp_core_avatar_v1' );978 delete_user meta( $user_id, 'bp_core_avatar_v1_path' );979 delete_user meta( $user_id, 'bp_core_avatar_v2' );980 delete_user meta( $user_id, 'bp_core_avatar_v2_path' );977 delete_user_meta( $user_id, 'bp_core_avatar_v1' ); 978 delete_user_meta( $user_id, 'bp_core_avatar_v1_path' ); 979 delete_user_meta( $user_id, 'bp_core_avatar_v2' ); 980 delete_user_meta( $user_id, 'bp_core_avatar_v2_path' ); 981 981 } 982 982 add_action( 'wpmu_delete_user', 'xprofile_remove_data' ); 983 983 add_action( 'delete_user', 'xprofile_remove_data' ); -
bp-groups/bp-groups-classes.php
748 748 749 749 groups_update_groupmeta( $this->group_id, 'total_member_count', ( (int) groups_get_groupmeta( $this->group_id, 'total_member_count' ) - 1 ) ); 750 750 751 $group_count = get_user meta( $this->user_id, 'total_group_count');751 $group_count = get_user_meta( $this->user_id, 'total_group_count', true ); 752 752 if ( !empty( $group_count ) ) 753 update_user meta( $this->user_id, 'total_group_count', (int)$group_count - 1 );753 update_user_meta( $this->user_id, 'total_group_count', (int)$group_count - 1 ); 754 754 755 755 return $this->save(); 756 756 } … … 762 762 $this->is_banned = 0; 763 763 764 764 groups_update_groupmeta( $this->group_id, 'total_member_count', ( (int) groups_get_groupmeta( $this->group_id, 'total_member_count' ) + 1 ) ); 765 update_user meta( $this->user_id, 'total_group_count', (int)get_usermeta( $this->user_id, 'total_group_count') + 1 );765 update_user_meta( $this->user_id, 'total_group_count', (int)get_user_meta( $this->user_id, 'total_group_count', true ) + 1 ); 766 766 767 767 return $this->save(); 768 768 } -
bp-groups/bp-groups-notifications.php
4 4 global $bp; 5 5 6 6 $group = new BP_Groups_Group( $group_id ); 7 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . __( 'Group Details Updated', 'buddypress' );7 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . __( 'Group Details Updated', 'buddypress' ); 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 ); … … 59 59 60 60 // Set up and send the message 61 61 $to = $ud->user_email; 62 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( 'Membership request for group: %s', 'buddypress' ), $group->name );62 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( 'Membership request for group: %s', 'buddypress' ), $group->name ); 63 63 64 64 $message = sprintf( __( 65 65 '%s wants to join the group "%s". … … 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 ); … … 107 107 $to = $ud->user_email; 108 108 109 109 if ( $accepted ) { 110 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( 'Membership request for group "%s" accepted', 'buddypress' ), $group->name );110 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( 'Membership request for group "%s" accepted', 'buddypress' ), $group->name ); 111 111 $message = sprintf( __( 112 112 'Your membership request for the group "%s" has been accepted. 113 113 … … 117 117 ', 'buddypress' ), $group->name, $group_link ); 118 118 119 119 } else { 120 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( 'Membership request for group "%s" rejected', 'buddypress' ), $group->name );120 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( 'Membership request for group "%s" rejected', 'buddypress' ), $group->name ); 121 121 $message = sprintf( __( 122 122 'Your membership request for the group "%s" has been rejected. 123 123 … … 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 ); … … 163 163 // Set up and send the message 164 164 $to = $ud->user_email; 165 165 166 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( 'You have been promoted in the group: "%s"', 'buddypress' ), $group->name );166 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( 'You have been promoted in the group: "%s"', 'buddypress' ), $group->name ); 167 167 168 168 $message = sprintf( __( 169 169 'You have been promoted to %s for the group: "%s". … … 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); … … 211 211 // Set up and send the message 212 212 $to = $invited_ud->user_email; 213 213 214 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( 'You have an invitation to the group: "%s"', 'buddypress' ), $group->name );214 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( 'You have an invitation to the group: "%s"', 'buddypress' ), $group->name ); 215 215 216 216 $message = sprintf( __( 217 217 'One of your friends %s has invited you to the group: "%s". … … 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 ); … … 270 270 // Set up and send the message 271 271 $ud = bp_core_get_core_userdata( $receiver_user_id ); 272 272 $to = $ud->user_email; 273 $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname') . '] ' . sprintf( __( '%s mentioned you in the group "%s"', 'buddypress' ), $poster_name, $group->name );273 $subject = '[' . wp_specialchars_decode( get_blog_option( BP_ROOT_BLOG, 'blogname' ) ) . '] ' . sprintf( __( '%s mentioned you in the group "%s"', 'buddypress' ), $poster_name, $group->name ); 274 274 275 275 $message = sprintf( __( 276 276 '%s mentioned you in the group "%s":