Changes to Board Template (12:54AM) Implemented several changes to make the board template function properly when logged in and out of the system Affected Files: templates/subSilver/overall_header.tpl templates/subSilver/privmsgs_body.tpl templates/subSilver/rpgworld_body.tpl includes/page_header.php language/lang_english/lang_main.php Addition of Links Section - COMPLETE (4-16-2007) (11:43AM) Copied and implemented the original links section code and template files to the system Added Files: links.php templates/subSilver/links_body.tpl templates/subSilver/admin/links_edit_body.tpl templates/subSilver/admin/links_list_body.tpl admin/admin_links.php Files Edited: language/lang_english/lang_admin.php language/lang_engligh/lang_main.php includes/constants.php Database Changes Made: Added the Following Table with the following fields; CREATE TABLE `phpbb_links` ( `link_id` mediumint(8) unsigned NOT NULL auto_increment, `link_title` varchar(100) default NULL, `link_order` mediumint(8) default NULL, `link_image` varchar(50) default NULL, `link_url` varchar(100) default NULL, `link_desc` varchar(150) default NULL, PRIMARY KEY (`link_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1