summaryrefslogtreecommitdiff
path: root/lib/noticeform.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-06-15 03:21:15 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-06-15 03:21:15 +0000
commit0bc9b2e730bb6368d36ba5bb3f2df1bf1432adad (patch)
tree92d0e5051036cbe6fc57dfe7d3e80137b54683ba /lib/noticeform.php
parentdaf2e7ef47b6ed071e764858c4b1a9f5eaadb65d (diff)
Cross-browser notice_attach
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r--lib/noticeform.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php
index 3212f382a..0ad365856 100644
--- a/lib/noticeform.php
+++ b/lib/noticeform.php
@@ -148,12 +148,12 @@ class NoticeForm extends Form
$this->out->element('dd', array('id' => 'notice_text-count'),
'140');
$this->out->elementEnd('dl');
- $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
- $this->out->element('label', array('for' => 'notice_data-attach'), _('Attach'));
+ $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');
}