################################################################# ## Mod Title: User Profile Link in Admin Activation Email ## Mod Version: 1.0.0 ## Author: Matthijs ## Description: This will add a link to the profile of the ## user awaiting moderation in the email send ## to the board admin. ## ## Installation Level: Easy ## Installation Time: 1-2 Minutes ## Files To Edit: lang_english/email/admin_activate.tpl, ## includes/usercp_viewprofile.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 ]------------------------------------------ # lang_english/email/admin_activate.tpl # #-----[ FIND ]------------------------------------------ # Userdetails: {U_PROFILE} # #-----[ AFTER, ADD ]------------------------------------------ # Activate: {U_ACTIVATE} # #-----[ OPEN ]------------------------------------------ # includes/usercp_register.php # #-----[ FIND ]------------------------------------------ # $emailer->assign_vars(array( 'USERNAME' => $username, 'EMAIL_SIG' => str_replace('
', "\n", "-- \n" . $board_config['board_email_sig']), # #-----[ AFTER, ADD ]---------------------------------------------- # 'U_PROFILE' => $server_url . "?mode=viewprofile&u=$new_user_id", # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM