[ticket/16463] Fix "acp_board.php" for "ACP_SUBMIT_CHANGES".

PHPBB3-16463
This commit is contained in:
Dark❶ 2020-05-03 11:56:48 +05:30
parent ae4575369c
commit 277f7d906d
No known key found for this signature in database
GPG key ID: FAE32A15F9132DE8

View file

@ -157,6 +157,10 @@ class acp_board
{
$display_vars['vars'] += $avatar_vars;
}
$display_vars['vars'] += [
'legend2' => 'ACP_SUBMIT_CHANGES'
];
break;
case 'message':
@ -315,6 +319,8 @@ class acp_board
'legend4' => 'ACP_FEED_SETTINGS_OTHER',
'feed_overall_forums' => array('lang' => 'ACP_FEED_OVERALL_FORUMS', 'validate' => 'bool', 'type' => 'radio:enabled_disabled', 'explain' => true ),
'feed_exclude_id' => array('lang' => 'ACP_FEED_EXCLUDE_ID', 'validate' => 'string', 'type' => 'custom', 'method' => 'select_exclude_forums', 'explain' => true),
'legend5' => 'ACP_SUBMIT_CHANGES',
)
);
break;
@ -329,6 +335,8 @@ class acp_board
'cookie_path' => array('lang' => 'COOKIE_PATH', 'validate' => 'string', 'type' => 'text::255', 'explain' => true),
'cookie_secure' => array('lang' => 'COOKIE_SECURE', 'validate' => 'bool', 'type' => 'radio:enabled_disabled', 'explain' => true),
'cookie_notice' => array('lang' => 'COOKIE_NOTICE', 'validate' => 'bool', 'type' => 'radio:enabled_disabled', 'explain' => true),
'legend2' => 'ACP_SUBMIT_CHANGES',
)
);
break;
@ -438,6 +446,7 @@ class acp_board
'form_token_lifetime' => array('lang' => 'FORM_TIME_MAX', 'validate' => 'int:-1:99999', 'type' => 'number:-1:99999', 'explain' => true, 'append' => ' ' . $user->lang['SECONDS']),
'form_token_sid_guests' => array('lang' => 'FORM_SID_GUESTS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'legend2' => 'ACP_SUBMIT_CHANGES',
)
);
break;