X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=lib%2Futil.php;h=e4699bf1a4d12ec5b7af77258cc25229351018d6;hb=764a391d196287a9400ee597019c3e5207c5a5f0;hp=a92204aa64a32b9186b70a2a5693056266a7b289;hpb=48eaede398859927e9ccdc39b21e26f1832c9910;p=quix0rs-gnu-social.git diff --git a/lib/util.php b/lib/util.php index a92204aa64..e4699bf1a4 100644 --- a/lib/util.php +++ b/lib/util.php @@ -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'); }