|
From: FlorinCB <ory...@us...> - 2008-10-04 08:03:24
|
Update of /cvsroot/mxbb/mx_contact/develop/addons/Registration addon In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv842/develop/addons/Registration addon Added Files: install.txt Log Message: new version of contact module --- NEW FILE: install.txt --- ############################################################## ## MOD Title: Registration Link to Contact Form ## MOD Author: marcus.smith < ma...@ph... > (Marcus) http://www.phobbia.net/mods ## MOD Description: Changes the "Administrator" link above the Registration form CAPTCHA to go ## to the Contact Form rather than expose an e-mail to harvesters. ## MOD Version: 1.0.0 ## ## Installation Level: Easy ## ## Installation Time: ~1 Minute ## ## Files To Edit: includes/usercp_register.php ## ## Included Files: N/A ## ## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ############################################################## ## For security purposes, please check: http://www.phpbb.com/mods/ ## for the latest version of this MOD. Although MODs are checked ## before being allowed in the MODs Database there is no guarantee ## that there are no security problems within the MOD. No support ## will be given for MODs not found within the MODs Database which ## can be found at http://www.phpbb.com/mods/ ############################################################## ## Author Notes: ## ## I recommend this little change for 1 simple reason. The Admin link is an ## <a href="mailto: Your e-mail"> link. Spambots can find and abuse this! ## ## Replacing it with a link to your Contact Form should prevent this. You will ## need to allow for Guests to use the Contact Form if you apply this change. ## ############################################################## ## MOD History: ## ## 2006-12-12 - Version 1.0.0 ## - Edit written for this small modification ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ OPEN ]------------------------------------------ # includes/usercp_register.php # #-----[ FIND ]------------------------------------------ # 'L_CONFIRM_CODE_IMPAIRED' => sprintf($lang['Confirm_code_impaired'], '<a href="mailto:' . $board_config['board_email'] . '">', '</a>'), # #-----[ REPLACE WITH ]------------------------------------ # 'L_CONFIRM_CODE_IMPAIRED' => sprintf($lang['Confirm_code_impaired'], '<a href="' . append_sid("contact.$phpEx") . '">', '</a>'), # #-----[ SAVE/CLOSE ALL FILES ]-------------------------- # # EoM |