aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-09-18 15:06:23 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-09-18 15:06:23 +0000
commit24da8c474dd1af6c846d79df243ecd4d2d24f0ee (patch)
tree8dd4d1a78ddacd211f856a4037bde1dcc2008a7c /phpBB/posting.php
parent158a15ba9c4e6bdfb1754bf33b4ff1919141b017 (diff)
downloadforums-24da8c474dd1af6c846d79df243ecd4d2d24f0ee.tar
forums-24da8c474dd1af6c846d79df243ecd4d2d24f0ee.tar.gz
forums-24da8c474dd1af6c846d79df243ecd4d2d24f0ee.tar.bz2
forums-24da8c474dd1af6c846d79df243ecd4d2d24f0ee.tar.xz
forums-24da8c474dd1af6c846d79df243ecd4d2d24f0ee.zip
remove duplicate statement
git-svn-id: file:///svn/phpbb/trunk@8884 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 973ff4c52f..947d34925e 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1264,7 +1264,7 @@ if ($solved_captcha !== false)
);
}
-$form_enctype = (@ini_get('file_uploads') == '0' || strtolower(@ini_get('file_uploads')) == 'off' || @ini_get('file_uploads') == '0' || !$config['allow_attachments'] || !$auth->acl_get('u_attach') || !$auth->acl_get('f_attach', $forum_id)) ? '' : ' enctype="multipart/form-data"';
+$form_enctype = (@ini_get('file_uploads') == '0' || strtolower(@ini_get('file_uploads')) == 'off' || !$config['allow_attachments'] || !$auth->acl_get('u_attach') || !$auth->acl_get('f_attach', $forum_id)) ? '' : ' enctype="multipart/form-data"';
add_form_key('posting');