Report#90: Forum List on the Portal - like on the index, could be switched on and off in the ACP, default is off

This commit is contained in:
Kevin
2008-04-18 14:17:33 +00:00
parent b7c15cd0c6
commit 8fd9604c8b
8 changed files with 58 additions and 2 deletions

View File

@@ -80,6 +80,7 @@ INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_cust
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_small_bbcode', '0');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_center_headline', 'Headline center box');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_small_headline', 'Headline small box');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_forum_index', '0');
# POSTGRES COMMIT #

View File

@@ -22,6 +22,7 @@ $sql_update['0.2.3'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_small_bbcode', '0')",
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_center_headline', 'Headline center box')",
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_small_headline', 'Headline small box')",
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_forum_index', '0')",
);
?>