Added form_note for notice character count.

http://laconi.ca/trac/ticket/1712
This commit is contained in:
Sarven Capadisli 2009-07-16 19:58:43 +00:00
parent 350a342509
commit 9b372f5bb7
1 changed files with 6 additions and 0 deletions

View File

@ -140,6 +140,12 @@ class MessageForm extends Form
'rows' => 4,
'name' => 'content'),
($this->content) ? $this->content : '');
$this->out->elementStart('dl', 'form_note');
$this->out->element('dt', null, _('Available characters'));
$this->out->element('dd', array('id' => 'notice_text-count'),
'140');
$this->out->elementEnd('dl');
}
/**