aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-08-12 21:40:09 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-08-12 21:40:09 +0200
commit89e95941b1a4d082fa0c3202b175c3f827e09333 (patch)
tree6cb71aab7229fcee461889a2b03b7e48faa190dc /phpBB/includes
parent0a5d167441004c4ed56b6b7cf32fd0c0eb5ae443 (diff)
parentf21c5f9fef53bda8369001ee434d395960f43a57 (diff)
downloadforums-89e95941b1a4d082fa0c3202b175c3f827e09333.tar
forums-89e95941b1a4d082fa0c3202b175c3f827e09333.tar.gz
forums-89e95941b1a4d082fa0c3202b175c3f827e09333.tar.bz2
forums-89e95941b1a4d082fa0c3202b175c3f827e09333.tar.xz
forums-89e95941b1a4d082fa0c3202b175c3f827e09333.zip
Merge pull request #5650 from 3D-I/ticket/16127
[ticket/16127] Add UI for email $max_chunk_size
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/acp_board.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php
index e348c769bd..0730b4e285 100644
--- a/phpBB/includes/acp/acp_board.php
+++ b/phpBB/includes/acp/acp_board.php
@@ -450,6 +450,7 @@ class acp_board
'email_enable' => array('lang' => 'ENABLE_EMAIL', 'validate' => 'bool', 'type' => 'radio:enabled_disabled', 'explain' => true),
'board_email_form' => array('lang' => 'BOARD_EMAIL_FORM', 'validate' => 'bool', 'type' => 'radio:enabled_disabled', 'explain' => true),
'email_package_size' => array('lang' => 'EMAIL_PACKAGE_SIZE', 'validate' => 'int:0', 'type' => 'number:0:99999', 'explain' => true),
+ 'email_max_chunk_size' => array('lang' => 'EMAIL_MAX_CHUNK_SIZE', 'validate' => 'int:1:99999', 'type' => 'number:1:99999', 'explain' => true),
'board_contact' => array('lang' => 'CONTACT_EMAIL', 'validate' => 'email', 'type' => 'email:25:100', 'explain' => true),
'board_contact_name' => array('lang' => 'CONTACT_EMAIL_NAME', 'validate' => 'string', 'type' => 'text:25:50', 'explain' => true),
'board_email' => array('lang' => 'ADMIN_EMAIL', 'validate' => 'email', 'type' => 'email:25:100', 'explain' => true),