The "Disable Portal" feature seems to be good. Tested, fixed the lang variables and merged over.

This commit is contained in:
Kevin
2008-10-04 22:12:10 +00:00
parent 9c1bf92d0a
commit 2a944a9caf
6 changed files with 46 additions and 2 deletions

View File

@@ -54,6 +54,7 @@ INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_link
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_show_announcements_replies_views', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_show_news_replies_views', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_welcome_guest', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_enable', '1');
# Inserts who have to be checked at a later stage of the block pallet feature #
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_leaders_ext', '0');

View File

@@ -73,4 +73,8 @@ $sql_update['1.0.0RC3'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_show_news_replies_views', '1');",
);
$sql_update['1.0.3'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_enable', '1');",
);
?>