summaryrefslogtreecommitdiff
path: root/lib/noticeform.php
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-05-31 18:33:38 -0400
committerRobin Millette <millette@controlyourself.ca>2009-05-31 18:33:38 -0400
commitabe68f4318009ed839c1998d91459f26d09f76c8 (patch)
treed90c98c9aa49f05abb8da3acf9703074386f50f8 /lib/noticeform.php
parentebeb5f744cbfd5bfea0da1b350a3757865ec4b3b (diff)
Added attachments config descriptions to README.
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r--lib/noticeform.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php
index 707768cd5..5f438327d 100644
--- a/lib/noticeform.php
+++ b/lib/noticeform.php
@@ -137,9 +137,6 @@ class NoticeForm extends Form
{
$this->out->element('label', array('for' => 'notice_data-text'),
sprintf(_('What\'s up, %s?'), $this->user->nickname));
- $this->out->elementStart('span', array('style' => 'float: right; margin-top: 2em;'));
-// $this->out->element('a', array('href' => '#attach'), ' [ATTACH]');
- $this->out->elementEnd('span');
// XXX: vary by defined max size
$this->out->element('textarea', array('id' => 'notice_data-text',
'cols' => 35,
@@ -152,15 +149,16 @@ class NoticeForm extends Form
'140');
$this->out->elementEnd('dl');
$this->out->element('br', array('style' => 'clear:both'));
-// $this->out->elementStart('a', array('href' => '#'));
$this->out->element('label', array('for' => 'notice_data-attach'), _('Upload: '));
-// $this->out->elementEnd('a');
$this->out->element('input', array('id' => 'notice_data-attach', 'type' => 'file', 'name' => 'attach'));
if ($this->action) {
$this->out->hidden('notice_return-to', $this->action, 'returnto');
}
$this->out->hidden('notice_in-reply-to', $this->action, 'inreplyto');
+
+ $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
+
}
/**