summaryrefslogtreecommitdiff
path: root/lib/noticeform.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-06-21 22:30:39 -0700
committerZach Copley <zach@controlyourself.ca>2009-06-21 22:30:39 -0700
commit9014a0a90d9ab5ee408aded51f379fd084fcd82c (patch)
treec30dea6917805d3218f030fc59185f00841e3abc /lib/noticeform.php
parentb8f3f32f3f12339c3838fcfc883815d63a36dca7 (diff)
parent876ab059273a5f223170d6b2c0b9b4342b06c50f (diff)
Merge branch '0.8.x' of git@gitorious.org:laconica/dev into 0.8.x
* '0.8.x' of git@gitorious.org:laconica/dev: Add like for search got rid of 'skin' concept a while ago add collecta.com link Update copyright dates in files modified in 2009 change Controlez-Vous to Control Yourself ignore config.php.* Position of max_file_size position helps IE
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r--lib/noticeform.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php
index a36b7f31f..4e2a2edd6 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');