diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-10-11 17:57:16 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-10-11 17:57:16 +0530 |
commit | 659236a32f58946a501d3fb9f04ba83ed91ef369 (patch) | |
tree | 81c9064a764c95a0b796281cf18c36bc8d0723ed /phpBB/install | |
parent | 2198c29c205ba3a98e66746b9527c50c50f7c1e2 (diff) | |
parent | 9e0fd29820af282262cbe16363b7b9dd9f6a31d8 (diff) | |
download | forums-659236a32f58946a501d3fb9f04ba83ed91ef369.tar forums-659236a32f58946a501d3fb9f04ba83ed91ef369.tar.gz forums-659236a32f58946a501d3fb9f04ba83ed91ef369.tar.bz2 forums-659236a32f58946a501d3fb9f04ba83ed91ef369.tar.xz forums-659236a32f58946a501d3fb9f04ba83ed91ef369.zip |
Merge remote-tracking branch 'nickvergessen/ticket/11906' into develop
# By Joas Schilling
# Via Joas Schilling
* nickvergessen/ticket/11906:
[ticket/11906] Fix namespace issues in prune_notifications
[ticket/11906] Add notification purge cron to cron tasks
[ticket/11906] Add missing configs from notifications cron to schema_data.sql
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 4f1cdf5a83..cd38f86312 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -230,6 +230,9 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('posts_per_page', ' INSERT INTO phpbb_config (config_name, config_value) VALUES ('print_pm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('queue_interval', '60'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('ranks_path', 'images/ranks'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('read_notification_expire_days', '30'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('read_notification_last_gc', '0'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('read_notification_gc', '86400'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('require_activation', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('referer_validation', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('script_path', ''); |