diff options
author | nomind60s <nomind60s@users.noreply.github.com> | 2017-03-29 12:24:35 -0600 |
---|---|---|
committer | nomind60s <nomind60s@users.noreply.github.com> | 2017-03-29 12:30:09 -0600 |
commit | 5bf3e4b3c64e7b61153ce1613f61f34f02f6d584 (patch) | |
tree | 664f0115afa9d3b0fd84a0a5e34b66b549ca964b /phpBB/includes/acp | |
parent | b567c6e2414d069ba54f7a924c952069aa115237 (diff) | |
download | forums-5bf3e4b3c64e7b61153ce1613f61f34f02f6d584.tar forums-5bf3e4b3c64e7b61153ce1613f61f34f02f6d584.tar.gz forums-5bf3e4b3c64e7b61153ce1613f61f34f02f6d584.tar.bz2 forums-5bf3e4b3c64e7b61153ce1613f61f34f02f6d584.tar.xz forums-5bf3e4b3c64e7b61153ce1613f61f34f02f6d584.zip |
[ticket/15151] ACP Cookie settings add explanatory text where it was missing
Improve the lead section to include a link to the phpBB.com Knowledge Base and
add explanation text for the Cookie domain, Cookie name and Cookie path fields.
PHPBB3-15151
Diffstat (limited to 'phpBB/includes/acp')
-rw-r--r-- | phpBB/includes/acp/acp_board.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php index c8f6f426c6..b06ea54372 100644 --- a/phpBB/includes/acp/acp_board.php +++ b/phpBB/includes/acp/acp_board.php @@ -318,9 +318,9 @@ class acp_board 'title' => 'ACP_COOKIE_SETTINGS', 'vars' => array( 'legend1' => 'ACP_COOKIE_SETTINGS', - 'cookie_domain' => array('lang' => 'COOKIE_DOMAIN', 'validate' => 'string', 'type' => 'text::255', 'explain' => false), - 'cookie_name' => array('lang' => 'COOKIE_NAME', 'validate' => 'string', 'type' => 'text::16', 'explain' => false), - 'cookie_path' => array('lang' => 'COOKIE_PATH', 'validate' => 'string', 'type' => 'text::255', 'explain' => false), + 'cookie_domain' => array('lang' => 'COOKIE_DOMAIN', 'validate' => 'string', 'type' => 'text::255', 'explain' => true), + 'cookie_name' => array('lang' => 'COOKIE_NAME', 'validate' => 'string', 'type' => 'text::16', 'explain' => true), + 'cookie_path' => array('lang' => 'COOKIE_PATH', 'validate' => 'string', 'type' => 'text::255', 'explain' => true), 'cookie_secure' => array('lang' => 'COOKIE_SECURE', 'validate' => 'bool', 'type' => 'radio:disabled_enabled', 'explain' => true), ) ); |