diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-03-04 17:34:04 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-03-04 17:34:04 +0000 |
commit | 14b6714c93944b6af9ec01d978cfe7f387dc7e9a (patch) | |
tree | fcf2b32921fe4ba1f8c48d8c199fbe7dbc545317 /phpBB/install/schemas | |
parent | 70b20a98f756c0bd3081d5de92997776ae39d6ce (diff) | |
download | forums-14b6714c93944b6af9ec01d978cfe7f387dc7e9a.tar forums-14b6714c93944b6af9ec01d978cfe7f387dc7e9a.tar.gz forums-14b6714c93944b6af9ec01d978cfe7f387dc7e9a.tar.bz2 forums-14b6714c93944b6af9ec01d978cfe7f387dc7e9a.tar.xz forums-14b6714c93944b6af9ec01d978cfe7f387dc7e9a.zip |
Expire issued warnings after and admin configurable time
TODO: Add config option for this value to the ACP
git-svn-id: file:///svn/phpbb/trunk@5602 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index a416e66e09..591a254f78 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -193,6 +193,8 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '2.1.2'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400'); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc', '0', 1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc', '0', 1); |