Tarea #1023 -> Incluir el nombre completo del usuario que manda una dedicatoria en el email que se genera
git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@122 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
This commit is contained in:
parent
79da810fc2
commit
61ce72a993
@ -4,11 +4,13 @@ function bp_dedication_send_dedication_notification( $post_id, $to_user_email, $
|
|||||||
global $bp;
|
global $bp;
|
||||||
|
|
||||||
/* Let's grab both user's names to use in the email. */
|
/* Let's grab both user's names to use in the email. */
|
||||||
$sender_name = bp_core_get_user_displayname( $from_user_id, false );
|
$sender_ud = get_userdata( $from_user_id );
|
||||||
|
|
||||||
|
|
||||||
|
$sender_username = $sender_ud->user_login;
|
||||||
|
$sender_name = bp_core_get_user_displayname( $sender_username );
|
||||||
//$reciever_name = bp_core_get_user_displayname( $to_user_id, false );
|
//$reciever_name = bp_core_get_user_displayname( $to_user_id, false );
|
||||||
|
|
||||||
/* Get the userdata for the sender. */
|
|
||||||
//$sender_ud = get_userdata( $from_user_id );
|
|
||||||
|
|
||||||
/* Now we need to construct the URL's that we are going to use in the email */
|
/* Now we need to construct the URL's that we are going to use in the email */
|
||||||
//$sender_profile_link = bp_core_get_userlink($from_user_id, false, true);
|
//$sender_profile_link = bp_core_get_userlink($from_user_id, false, true);
|
||||||
@ -22,12 +24,12 @@ function bp_dedication_send_dedication_notification( $post_id, $to_user_email, $
|
|||||||
$subject = '[' . get_blog_option( 1, 'blogname' ) . '] ' . sprintf( __( '%s dedicated a song 2 u!', 'bp-dedication' ), stripslashes($sender_name) );
|
$subject = '[' . get_blog_option( 1, 'blogname' ) . '] ' . sprintf( __( '%s dedicated a song 2 u!', 'bp-dedication' ), stripslashes($sender_name) );
|
||||||
|
|
||||||
$message = sprintf( __(
|
$message = sprintf( __(
|
||||||
'%s sent you a dedication!
|
'%s (%s) sent you a dedication!
|
||||||
|
|
||||||
To see %s\'s dedication: %s
|
To see %s\'s dedication: %s
|
||||||
|
|
||||||
---------------------
|
---------------------
|
||||||
', 'bp-dedication' ), $sender_name, $sender_name, $post_link );
|
', 'bp-dedication' ), $sender_name, $sender_username, $sender_username, $post_link );
|
||||||
|
|
||||||
//$message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'bp-example' ), $reciever_settings_link );
|
//$message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'bp-example' ), $reciever_settings_link );
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user