Changeset 2388
- Timestamp:
- 12/31/2009 01:18:12 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/bb-includes/functions.bb-posts.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-includes/functions.bb-posts.php
r2386 r2388 405 405 $user = bb_get_user( $user_id ); 406 406 407 $message = __( "There is a new post on: %1\$s \nReply by: %2\$s \nText: %3\$s \n\n%4\$s ");407 $message = __( "%2\$s wrote:\n\n %3\$s\n\nTopic Link: %4\$s\n\nYou're getting this mail because you subscribed to the topic, visit the topic and login to unsubscribe." ); 408 408 bb_mail( 409 409 $user->user_email, 410 410 '[' . bb_get_option('name') . '] ' . get_topic_title( $topic_id ), 411 sprintf( $message, get_topic_title( $topic_id ), get_user_name( $post->poster_id ), strip_tags( get_post_text( $post_id ) ), get_ topic_link( $topic_id ) ),411 sprintf( $message, get_topic_title( $topic_id ), get_user_name( $post->poster_id ), strip_tags( get_post_text( $post_id ) ), get_post_link( $post_id ) ), 412 412 'From: '.bb_get_option('name').' <'.bb_get_option('from_email').'>' 413 413 );
Note: See TracChangeset
for help on using the changeset viewer.