X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Futil.php;h=a92204aa64a32b9186b70a2a5693056266a7b289;hb=48eaede398859927e9ccdc39b21e26f1832c9910;hp=72c9652b9ab969c370ac79dac84f1cf93f415e27;hpb=0a52f792161ad68e33a7586123f5b2ba68527d8d;p=quix0rs-gnu-social.git diff --git a/lib/util.php b/lib/util.php index 72c9652b9a..a92204aa64 100644 --- a/lib/util.php +++ b/lib/util.php @@ -112,10 +112,10 @@ function common_show_header($pagetitle) { function common_show_footer() { global $xw, $config; - common_element_start('p', 'footer'); + common_element_start('div', 'footer'); common_foot_menu(); common_license_block(); - common_element_end('p'); + common_element_end('div'); common_element_end('div'); common_element_end('div'); common_element_end('div'); @@ -175,7 +175,7 @@ function common_head_menu() { } function common_foot_menu() { - common_element_start('ul', 'footmenu'); + common_element_start('ul', 'footmenu menuish'); common_menu_item(common_local_url('doc', array('title' => 'about')), _t('About')); common_menu_item(common_local_url('doc', array('title' => 'help')), @@ -232,6 +232,17 @@ function common_submit($id, $label) { common_element_end('p'); } +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, + 'name' => $id, + 'id' => $id, + 'class' => 'width50'), + ($content) ? $content : ' '); + common_element_end('p'); +} + # salted, hashed passwords are stored in the DB function common_munge_password($id, $password) { @@ -381,14 +392,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_element_start('p'); - common_element('label', array('for' => 'content'), _t('What\'s up?')); - common_element('textarea', array('rows' => 3, 'cols' => 40, - 'name' => 'content', - 'id' => 'content', - 'class' => 'width50'), - ' '); - common_element_end('p'); + common_textarea('content', _t('What\'s up?')); common_submit('submit', _t('Send')); common_element_end('form'); }