It is recommended that you first view the README. If you have already read the README file, you can continue to the install.
############################################################## ## MOD Title: Approve_Mod_Patch 1.0.8 to 1.0.9 ## MOD Author: Aceman < phpbbmods@synace.com > (Mike Dawidowicz) http://www.synace.com ## MOD Description: This Patches the Approve_Mod from version 1.0.8 to version 1.0.9 ## MOD Version: 1.0.0 ## ## Installation Level: Easy ## Installation Time: 5 Minutes ## Files To Edit: posting.php, admin/admin_forums.php ## Included Files: admin/admin_approve.php ############################################################## ## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the ## latest version of this MOD. Downloading this MOD from other sites could cause malicious code ## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered ## in our MOD-Database, located at: http://www.phpbb.com/mods/ ############################################################## ## Author Notes: ## ## Approve_Mod 1.0.9 Released: August 27, 2003. ## Please see README.html from the distribution for further information. You may also view ## the release thread on phpBB.com at: ## http://www.phpbb.com/phpBB/viewtopic.php?t=122005 ############################################################## ## MOD History: ## ## 2003-08-27 - Version 1.0.0 ## - Fixed double-escaped quotes in email notification, fixed normal user support in admin_forums moderators section, ## fixed SQL compatibility in admin_approve.php, added all phpBB2 supported database schemas, and modified install. ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ OPEN ]------------------------------------------ # posting.php # #-----[ FIND ]------------------------------------------ # $emailer->msg .= ( intval($approve_mod['approve_notify_message_len']) != 0 && (strlen($message) > intval($approve_mod['approve_notify_message_len']) ) ) ? substr($message, 0, intval($approve_mod['approve_notify_message_len']) ) . $lang['approve_notify_message_exceeded'] : $message; # #-----[ AFTER, ADD ]------------------------------------------ # $emailer->msg = stripslashes($emailer->msg); # #-----[ OPEN ]------------------------------------------ # admin/admin_forums.php # #-----[ FIND ]------------------------------------------ # if ( intval($row_user['user_id']) != intval(ANONYMOUS) && intval($row_user['user_level']) != intval(DELETED) && intval($row_user['user_level']) != 0 ) # #-----[ REPLACE WITH ]------------------------------------------ # if ( intval($row_user['user_id']) != intval(ANONYMOUS) && intval($row_user['user_level']) != intval(DELETED) ) # #-----[ COPY ]------------------------------------------ # copy approve_mod_install/admin_approve.php to admin/admin_approve.php # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM