add a space to textarea

darcs-hash:20080520133825-84dde-10a3623b12380f12386a8bbbe06cb130902bff8e.gz
This commit is contained in:
Evan Prodromou 2008-05-20 09:38:25 -04:00
parent 7cc40c5017
commit e70b7d3a6c
2 changed files with 9 additions and 9 deletions

View File

@ -48,7 +48,7 @@ class NewnoticeAction extends Action {
assert($notice); assert($notice);
$notice->profile_id = $user->id; # user id *is* profile id $notice->profile_id = $user->id; # user id *is* profile id
$notice->created = DB_DataObject_Cast::dateTime(); $notice->created = DB_DataObject_Cast::dateTime();
$notice->content = $this->arg('content'); $notice->content = trim($this->arg('content'));
return $notice->insert(); return $notice->insert();
} }
@ -57,10 +57,10 @@ class NewnoticeAction extends Action {
common_element_start('form', array('id' => 'newnotice', 'method' => 'POST', common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
'action' => common_local_url('newnotice'))); 'action' => common_local_url('newnotice')));
common_element('span', 'nickname', $profile->nickname); common_element('span', 'nickname', $profile->nickname);
common_element_start('textarea', array('rows' => 4, 'cols' => 80, common_element('textarea', array('rows' => 4, 'cols' => 80,
'name' => 'content', 'name' => 'content',
'id' => 'content')); 'id' => 'content'),
common_element_end('textarea'); ' ');
common_element('input', array('type' => 'submit', 'value' => 'Send')); common_element('input', array('type' => 'submit', 'value' => 'Send'));
common_element_end('form'); common_element_end('form');
common_show_footer(); common_show_footer();

View File

@ -83,10 +83,10 @@ class ShowstreamAction extends StreamAction {
function notice_form() { function notice_form() {
common_element_start('form', array('id' => 'newnotice', 'method' => 'POST', common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
'action' => common_local_url('newnotice'))); 'action' => common_local_url('newnotice')));
common_element_start('textarea', array('rows' => 4, 'cols' => 80, common_element('textarea', array('rows' => 4, 'cols' => 80,
'name' => 'content', 'name' => 'content',
'id' => 'content')); 'id' => 'content'),
common_element_end('textarea'); ' ');
common_element('input', array('type' => 'submit', 'value' => 'Send')); common_element('input', array('type' => 'submit', 'value' => 'Send'));
common_element_end('form'); common_element_end('form');
} }