From: Sarven Capadisli Date: Sat, 20 Jun 2009 18:22:05 +0000 (+0000) Subject: Position of max_file_size position helps IE X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=054e4459b2b2701158cd183dc1eb04c454e04bff;p=quix0rs-gnu-social.git Position of max_file_size position helps IE --- diff --git a/lib/noticeform.php b/lib/noticeform.php index a36b7f31f7..4e2a2edd61 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -151,12 +151,12 @@ class NoticeForm extends Form '140'); $this->out->elementEnd('dl'); if (common_config('attachments', 'uploads')) { - $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota')); $this->out->element('label', array('for' => 'notice_data-attach'),_('Attach')); $this->out->element('input', array('id' => 'notice_data-attach', 'type' => 'file', 'name' => 'attach', 'title' => _('Attach a file'))); + $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota')); } if ($this->action) { $this->out->hidden('notice_return-to', $this->action, 'returnto');