]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fixup textarea again
authorEvan Prodromou <evan@prodromou.name>
Tue, 20 May 2008 21:23:19 +0000 (17:23 -0400)
committerEvan Prodromou <evan@prodromou.name>
Tue, 20 May 2008 21:23:19 +0000 (17:23 -0400)
darcs-hash:20080520212319-84dde-27601a4e11dd6a34834f4689c316dae594d8d7e8.gz

actions/newnotice.php
lib/util.php

index cc62901f2bd0ada1d72815e71e49adaa0d67a9c7..faf9b21ef6ae80248efa658fe5fdca9ee8081956 100644 (file)
@@ -48,7 +48,8 @@ class NewnoticeAction extends Action {
                assert($notice);
                $notice->profile_id = $user->id; # user id *is* profile id
                $notice->created = DB_DataObject_Cast::dateTime();
-               $notice->content = trim($this->arg('content'));
+               # Default theme uses 'content' for something else
+               $notice->content = trim($this->arg('noticecontent'));
 
                $val = $notice->validate();
                if ($val === TRUE) {
index a92204aa64a32b9186b70a2a5693056266a7b289..e4699bf1a4d12ec5b7af77258cc25229351018d6 100644 (file)
@@ -235,7 +235,8 @@ function common_submit($id, $label) {
 function common_textarea($id, $label, $content=NULL) {
        common_element_start('p');
        common_element('label', array('for' => $id), $label);
-       common_element('textarea', array('rows' => 3, 'cols' => 40,
+       common_element('textarea', array('rows' => 3,
+                                                                        'cols' => 40,
                                                                         'name' => $id,
                                                                         'id' => $id, 
                                                                         'class' => 'width50'),
@@ -392,7 +393,7 @@ function common_profile_url($nickname) {
 function common_notice_form() {
        common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
                                                                           'action' => common_local_url('newnotice')));
-       common_textarea('content', _t('What\'s up?'));
+       common_textarea('noticecontent', _t('What\'s up?'));
        common_submit('submit', _t('Send'));
        common_element_end('form');
 }