diff options
author | 2017-04-16 16:28:38 +0200 | |
---|---|---|
committer | 2017-04-16 16:28:38 +0200 | |
commit | aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32 (patch) | |
tree | a32036d6da60bbb1b4fdb60694702f36408ba71b /phpBB/language | |
parent | Merge branch '3.1.x' into 3.2.x (diff) | |
download | phpbb-aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32.tar.gz phpbb-aa37e9b7fc60bd443c6abbcdc3adbf28ae010f32.tar.bz2 phpbb-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/language')
-rw-r--r-- | phpBB/language/en/acp/board.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php index 1a98665973..ff55772aec 100644 --- a/phpBB/language/en/acp/board.php +++ b/phpBB/language/en/acp/board.php @@ -395,6 +395,8 @@ $lang = array_merge($lang, array( 'LOAD_CPF_VIEWTOPIC' => 'Display custom profile fields on topic pages', 'LOAD_USER_ACTIVITY' => 'Show user’s activity', 'LOAD_USER_ACTIVITY_EXPLAIN' => 'Displays active topic/forum in user profiles and user control panel. It is recommended to disable this on boards with more than one million posts.', + 'LOAD_USER_ACTIVITY_LIMIT' => 'User’s activity post limit', + 'LOAD_USER_ACTIVITY_LIMIT_EXPLAIN' => 'The active topic/forum won’t be shown for users having more than this number of posts. Set to 0 to disable the limit.', 'READ_NOTIFICATION_EXPIRE_DAYS' => 'Read Notification Expiration', 'READ_NOTIFICATION_EXPIRE_DAYS_EXPLAIN' => 'Number of days that will elapse before a read notification will automatically be deleted. Set this value to 0 to make notifications permanent.', 'RECOMPILE_STYLES' => 'Recompile stale style components', |