aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-09-18 15:05:51 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-09-18 15:05:51 +0000
commitb91b43d22ce5baa6cdc552cd343dc2bfdce134ff (patch)
tree0ed0d718c41025890e380afe6d4b003dfa50302a /phpBB/posting.php
parentc246231f053569ff28caf3ab3b4e2b162b2b516f (diff)
downloadforums-b91b43d22ce5baa6cdc552cd343dc2bfdce134ff.tar
forums-b91b43d22ce5baa6cdc552cd343dc2bfdce134ff.tar.gz
forums-b91b43d22ce5baa6cdc552cd343dc2bfdce134ff.tar.bz2
forums-b91b43d22ce5baa6cdc552cd343dc2bfdce134ff.tar.xz
forums-b91b43d22ce5baa6cdc552cd343dc2bfdce134ff.zip
remove duplicate statement
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8883 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 64e26766b3..dbad69cf52 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');