aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-06-26 23:44:21 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-26 23:44:21 +0200
commit7e769083bff06b91bd480fe682656b32fc59a06c (patch)
tree33d71cd03397f3cef383785fd655baaa4beb95d8 /phpBB/includes
parentffa1f9baf559468ecb06a7ae88b73f5a7232b53f (diff)
downloadforums-7e769083bff06b91bd480fe682656b32fc59a06c.tar
forums-7e769083bff06b91bd480fe682656b32fc59a06c.tar.gz
forums-7e769083bff06b91bd480fe682656b32fc59a06c.tar.bz2
forums-7e769083bff06b91bd480fe682656b32fc59a06c.tar.xz
forums-7e769083bff06b91bd480fe682656b32fc59a06c.zip
[ticket/12196] Fix typo in "referrer"
Referer is a typo in the HTTP RFC and should not be used in the UI PHPBB3-12196
Diffstat (limited to 'phpBB/includes')
-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 74df9240a1..1811748c2f 100644
--- a/phpBB/includes/acp/acp_board.php
+++ b/phpBB/includes/acp/acp_board.php
@@ -410,7 +410,7 @@ class acp_board
'ip_check' => array('lang' => 'IP_VALID', 'validate' => 'int', 'type' => 'custom', 'method' => 'select_ip_check', 'explain' => true),
'browser_check' => array('lang' => 'BROWSER_VALID', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'forwarded_for_check' => array('lang' => 'FORWARDED_FOR_VALID', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
- 'referer_validation' => array('lang' => 'REFERER_VALID', 'validate' => 'int:0:3','type' => 'custom', 'method' => 'select_ref_check', 'explain' => true),
+ 'referer_validation' => array('lang' => 'REFERRER_VALID', 'validate' => 'int:0:3','type' => 'custom', 'method' => 'select_ref_check', 'explain' => true),
'check_dnsbl' => array('lang' => 'CHECK_DNSBL', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'email_check_mx' => array('lang' => 'EMAIL_CHECK_MX', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
'max_pass_chars' => array('lang' => 'PASSWORD_LENGTH', 'validate' => 'int:8:255', 'type' => false, 'method' => false, 'explain' => false,),