diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-06-25 22:34:32 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-06-25 23:17:02 +0200 |
commit | 9bc1f7924d5ef00fb988b81347d4c5c730b25eb2 (patch) | |
tree | eb637c2c2830ac410a61b6221dbf4c93f2eb7edc /phpBB/includes/acp/acp_attachments.php | |
parent | 2596dbc850df86dd0d620e9d90bfd59a2f23a0eb (diff) | |
download | forums-9bc1f7924d5ef00fb988b81347d4c5c730b25eb2.tar forums-9bc1f7924d5ef00fb988b81347d4c5c730b25eb2.tar.gz forums-9bc1f7924d5ef00fb988b81347d4c5c730b25eb2.tar.bz2 forums-9bc1f7924d5ef00fb988b81347d4c5c730b25eb2.tar.xz forums-9bc1f7924d5ef00fb988b81347d4c5c730b25eb2.zip |
[ticket/12196] Fix typo "referer" in acp/attachments
PHPBB3-12196
Diffstat (limited to 'phpBB/includes/acp/acp_attachments.php')
-rw-r--r-- | phpBB/includes/acp/acp_attachments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php index fc5f44e14f..b32e401e14 100644 --- a/phpBB/includes/acp/acp_attachments.php +++ b/phpBB/includes/acp/acp_attachments.php @@ -118,7 +118,7 @@ class acp_attachments 'max_attachments_pm' => array('lang' => 'MAX_ATTACHMENTS_PM', 'validate' => 'int', 'type' => 'text:3:3', 'explain' => false), 'secure_downloads' => array('lang' => 'SECURE_DOWNLOADS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), 'secure_allow_deny' => array('lang' => 'SECURE_ALLOW_DENY', 'validate' => 'int', 'type' => 'custom', 'method' => 'select_allow_deny', 'explain' => true), - 'secure_allow_empty_referer' => array('lang' => 'SECURE_EMPTY_REFERRER', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), + 'secure_allow_empty_referer' => array('lang' => 'SECURE_EMPTY_REFERER', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), 'check_attachment_content' => array('lang' => 'CHECK_CONTENT', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true), |