diff options
| author | lr94 <lucarobbiano@gmail.com> | 2017-04-16 16:28:38 +0200 |
|---|---|---|
| committer | lr94 <lucarobbiano@gmail.com> | 2017-04-16 16:28:38 +0200 |
| commit | aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32 (patch) | |
| tree | a32036d6da60bbb1b4fdb60694702f36408ba71b /phpBB/install | |
| parent | 9d35258532ad232868c38b275b4df32089086d37 (diff) | |
| download | forums-aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32.tar forums-aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32.tar.gz forums-aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32.tar.bz2 forums-aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32.tar.xz forums-aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32.zip | |
[ticket/15176] Add setting for user activity display limit.
Up to phpBB 3.2 the maximum number of posts a user must have to have his
activity shown is 5000. This limit is hardcoded in functions_display.php.
It would be useful if board administrators could choose to disable the
limit or to set an higher value.
PHPBB3-15176
Diffstat (limited to 'phpBB/install')
| -rw-r--r-- | phpBB/install/schemas/schema_data.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 998cf17c3d..263200d8ff 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -197,6 +197,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_search', '1') INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_tplcompile', '0'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_unreads_search', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_user_activity', '1'); +INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_user_activity_limit', '5000'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments', '3'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments_pm', '1'); INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_autologin_time', '0'); |
