mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-07 16:15:22 +02:00
Do not display the "You have reached your blah blah folder limit" when the administrator has set the limit to 0. Existing folders that were created before the limit was set to 0 can still be edited. This only affects the "Add folder" section.
git-svn-id: file:///svn/phpbb/trunk@6723 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
c848979cdd
commit
7428cdfd85
@ -430,6 +430,7 @@ function message_options($id, $mode, $global_privmsgs_rules, $global_rule_condit
|
||||
'S_HOLD_CHECKED' => $s_hold_checked,
|
||||
'S_MOVE_CHECKED' => $s_move_checked,
|
||||
'S_MAX_FOLDER_REACHED' => ($num_user_folder >= $config['pm_max_boxes']) ? true : false,
|
||||
'S_MAX_FOLDER_ZERO' => ($config['pm_max_boxes'] == 0) ? true : false,
|
||||
|
||||
'DEFAULT_ACTION' => ($config['full_folder_action'] == 1) ? $user->lang['DELETE_OLDEST_MESSAGES'] : $user->lang['HOLD_NEW_MESSAGES'],
|
||||
|
||||
|
@ -245,7 +245,7 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'MARK_IMPORTANT' => 'Mark as important',
|
||||
'MARKED_MESSAGE' => 'Marked message',
|
||||
'MAX_FOLDER_REACHED' => 'Maximum number of allowed user defined folder reached',
|
||||
'MAX_FOLDER_REACHED' => 'Maximum number of allowed user defined folders reached',
|
||||
'MESSAGE_BY_AUTHOR' => 'by',
|
||||
'MESSAGE_COLOURS' => 'Message colours',
|
||||
'MESSAGE_DELETED' => 'Message successfully deleted',
|
||||
|
@ -113,6 +113,7 @@
|
||||
<div style="padding: 2px;"></div>
|
||||
<!-- ENDIF -->
|
||||
|
||||
<!-- IF not S_MAX_FOLDER_ZERO -->
|
||||
<table class="tablebg" width="100%" cellspacing="1">
|
||||
<tr>
|
||||
<th colspan="2">{L_ADD_FOLDER}</th>
|
||||
@ -131,6 +132,7 @@
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
</table>
|
||||
<!-- ENDIF -->
|
||||
|
||||
<div style="padding: 2px;"></div>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user