############################################################## ## MOD Title: phpBB 3.0.1 to phpBB 3.0.2 Code Changes ## MOD Author: Acyd Burn < N/A > (Meik Sievertsen) N/A ## MOD Description: ## ## ## These are the Changes from phpBB 3.0.1 to phpBB 3.0.2 summed up into a little ## Mod. This might be very helpful if you want to update your Board and have ## installed a bunch of Mods. Then it's normally easier to apply the Code Changes ## than to install all Mods again. ## ## When you find a 'AFTER, ADD'-Statement, the Code have to be added after the last ## line quoted in the 'FIND'-Statement. ## When you find a 'BEFORE, ADD'-Statement, the Code have to be added before the ## first line quoted in the 'FIND'-Statement. ## When you find a 'REPLACE WITH'-Statement, the Code quoted in the ## 'FIND'-Statement have to be replaced completely with the quoted Code in the ## 'REPLACE WITH'-Statement. ## ## When you find more than one 'FIND'-Statement it just means that you go down the ## code within the order of the 'FIND'-Statements, if you found the lines for the ## first 'FIND'-Statement, you continue to search the lines for the second ## 'FIND'-Statement. The last 'FIND'-Statement includes the codeblock to work ## with. ## ## For a comprehensive explanation about installing MODs, please visit this url: ## http://www.phpbb.com/kb/article/how-to-install-mods/ ## ## After you have finished this tutorial, you have to upload the ## install/database_update.php file, execute it and then delete it from your ## webspace. ## ## ## ## MOD Version: 1.0.0 ## ## Installation Level: Easy ## Installation Time: 20 Minutes ## Files To Edit: ## adm/index.php ## adm/style/acp_forums.html ## adm/style/overall_header.html ## download/file.php ## includes/acp/acp_attachments.php ## includes/acp/acp_board.php ## includes/acp/acp_captcha.php ## includes/acp/acp_database.php ## includes/acp/acp_forums.php ## includes/acp/acp_groups.php ## includes/acp/acp_icons.php ## includes/acp/acp_main.php ## includes/acp/acp_permissions.php ## includes/acp/acp_styles.php ## includes/auth/auth_apache.php ## includes/auth.php ## includes/constants.php ## includes/functions.php ## includes/functions_admin.php ## includes/functions_compress.php ## includes/functions_content.php ## includes/functions_convert.php ## includes/functions_install.php ## includes/functions_jabber.php ## includes/functions_posting.php ## includes/functions_privmsgs.php ## includes/functions_upload.php ## includes/functions_user.php ## includes/mcp/mcp_ban.php ## includes/mcp/mcp_main.php ## includes/mcp/mcp_queue.php ## includes/mcp/mcp_reports.php ## includes/mcp/mcp_topic.php ## includes/mcp/mcp_warn.php ## includes/message_parser.php ## includes/search/fulltext_mysql.php ## includes/search/fulltext_native.php ## includes/session.php ## includes/ucp/ucp_confirm.php ## includes/ucp/ucp_pm.php ## includes/ucp/ucp_pm_compose.php ## includes/ucp/ucp_pm_viewfolder.php ## includes/utf/utf_tools.php ## language/en/acp/attachments.php ## language/en/acp/board.php ## language/en/acp/common.php ## language/en/acp/groups.php ## language/en/common.php ## language/en/memberlist.php ## language/en/posting.php ## mcp.php ## memberlist.php ## posting.php ## search.php ## style.php ## styles/prosilver/imageset/imageset.cfg ## styles/prosilver/style.cfg ## styles/prosilver/template/mcp_ban.html ## styles/prosilver/template/mcp_queue.html ## styles/prosilver/template/memberlist_view.html ## styles/prosilver/template/message_body.html ## styles/prosilver/template/template.cfg ## styles/prosilver/template/ucp_main_subscribed.html ## styles/prosilver/template/ucp_pm_history.html ## styles/prosilver/template/viewforum_body.html ## styles/prosilver/theme/bidi.css ## styles/prosilver/theme/theme.cfg ## styles/subsilver2/imageset/imageset.cfg ## styles/subsilver2/style.cfg ## styles/subsilver2/template/search_results.html ## styles/subsilver2/template/template.cfg ## styles/subsilver2/theme/theme.cfg ## ucp.php ## viewforum.php ## viewonline.php ## viewtopic.php ## ## Included Files: install/database_update.php ## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ############################################################## ## Author Notes: ## ## ############################################################## ## MOD History: ## ## 2008-07-06 - Version 1.0.0 ## - first release ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD ############################################################## # #-----[ OPEN ]--------------------------------------------- # adm/index.php # #-----[ FIND ]--------------------------------------------- # Around Line 1 * @version $Id: index.php 8479 2008-03-29 00:22:48Z naderman $ # #-----[ REPLACE WITH ]--------------------------------------------- # * @version $Id: index.php 8591 2008-06-04 11:40:53Z Kellanved $ # #-----[ FIND ]--------------------------------------------- # Around Line 43 $safe_mode = (@ini_get('safe_mode') == '1' || @strtolower(ini_get('safe_mode')) === 'on') ? true : false; # #-----[ REPLACE WITH ]--------------------------------------------- # $safe_mode = (@ini_get('safe_mode') == '1' || strtolower(@ini_get('safe_mode')) === 'on') ? true : false; # #-----[ FIND ]--------------------------------------------- # Around Line 114 '_SID' => $_SID, 'SESSION_ID' => $user->session_id, 'ROOT_PATH' => $phpbb_admin_path, 'U_LOGOUT' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=logout'), # #-----[ AFTER, ADD ]--------------------------------------------- # 'U_ADM_LOGOUT' => append_sid("{$phpbb_admin_path}index.$phpEx", 'action=admlogout'), # #-----[ OPEN ]--------------------------------------------- # adm/style/acp_forums.html # #-----[ FIND ]--------------------------------------------- # Around Line 94 // ]]> « {L_BACK} # #-----[ FIND ]--------------------------------------------- # Around Line 99
{L_LOGGED_IN_AS}
{USERNAME} [ {L_LOGOUT} ]
{L_LOGGED_IN_AS}
{USERNAME} [ {L_LOGOUT} ][ {L_ADM_LOGOUT} ]
{L_DELETED_TOPIC}
{L_DELETED_TOPIC}