diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-20 09:38:25 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-20 09:38:25 -0400 |
commit | e70b7d3a6c82358e38a65eade5753b5ba33ab51a (patch) | |
tree | 66e88835f73f401204ea8510b998cbab91c02905 /actions/newnotice.php | |
parent | 7cc40c5017a850f507d867bcc72b5dadb00acdc8 (diff) |
add a space to textarea
darcs-hash:20080520133825-84dde-10a3623b12380f12386a8bbbe06cb130902bff8e.gz
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r-- | actions/newnotice.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index 80630cdb1..8ea28360a 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -48,7 +48,7 @@ class NewnoticeAction extends Action { assert($notice); $notice->profile_id = $user->id; # user id *is* profile id $notice->created = DB_DataObject_Cast::dateTime(); - $notice->content = $this->arg('content'); + $notice->content = trim($this->arg('content')); return $notice->insert(); } @@ -57,10 +57,10 @@ class NewnoticeAction extends Action { common_element_start('form', array('id' => 'newnotice', 'method' => 'POST', 'action' => common_local_url('newnotice'))); common_element('span', 'nickname', $profile->nickname); - common_element_start('textarea', array('rows' => 4, 'cols' => 80, - 'name' => 'content', - 'id' => 'content')); - common_element_end('textarea'); + common_element('textarea', array('rows' => 4, 'cols' => 80, + 'name' => 'content', + 'id' => 'content'), + ' '); common_element('input', array('type' => 'submit', 'value' => 'Send')); common_element_end('form'); common_show_footer(); |