aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-03-08 21:27:11 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-03-08 21:27:11 +0100
commit1edb0bd173b61812e7e43cb25af938457e82a73b (patch)
tree13ebc983f07e1705465d079f88b15a8f581d27cd
parent013c9ad9ef513d128fe55449a64dbb7404ba510f (diff)
parente1910b9a0fbd298fbc3a0fd6faf8b38f9f4a9109 (diff)
downloadforums-1edb0bd173b61812e7e43cb25af938457e82a73b.tar
forums-1edb0bd173b61812e7e43cb25af938457e82a73b.tar.gz
forums-1edb0bd173b61812e7e43cb25af938457e82a73b.tar.bz2
forums-1edb0bd173b61812e7e43cb25af938457e82a73b.tar.xz
forums-1edb0bd173b61812e7e43cb25af938457e82a73b.zip
Merge pull request #4700 from DavidIQ/ticket/15089
[ticket/15089] Reverse the order of cookie secure radio buttons
-rw-r--r--phpBB/includes/acp/acp_board.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_board.php b/phpBB/includes/acp/acp_board.php
index 1f9c15dbd0..05a8b79137 100644
--- a/phpBB/includes/acp/acp_board.php
+++ b/phpBB/includes/acp/acp_board.php
@@ -323,7 +323,7 @@ class acp_board
'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_secure' => array('lang' => 'COOKIE_SECURE', 'validate' => 'bool', 'type' => 'radio:disabled_enabled', '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),
)
);