################################################################# ## Mod Title: Notify Email Shows Poster Name ## Mod Version: 1.0.0 ## Author: Matthijs < phpbb@matthijs.net > ## Description: This will show the name of the person reacting to ## the topic you're watching in the notification ## email. ## ## Installation Level: easy ## Installation Time: 4 Minutes ## Files To Edit: language/lang_english/email/topic_notify.tpl, ## includes/functions_post.php ## Included Files: N/A ################################################################# ## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites ################################################################# ## ################################################################# ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ################################################################# # #-----[ OPEN ]------------------------------------------ # language/lang_english/email/topic_notify.tpl # #-----[ FIND ]------------------------------------------ # This topic has received a reply since your last visit. # #-----[ REPLACE WITH ]------------------------------------------ # {POSTER_USERNAME} has replied to this topic since your last visit. # #-----[ OPEN ]------------------------------------------ # includes/functions_post.php # #-----[ FIND ]------------------------------------------ # 'TOPIC_TITLE' => $topic_title, # #-----[ AFTER, ADD ]------------------------------------------ # 'POSTER_USERNAME' => $userdata['username'], # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM