diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-11-25 15:26:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-11-25 15:26:11 +0000 |
commit | 5b16e6b0a97e4e7a713734fbb712dddfaa45ee0e (patch) | |
tree | 56f5995a35b29daeb7740a69c37c97713a246508 | |
parent | bb3d610760709cf17a9a26ab9c6b12d7d5d26504 (diff) | |
download | brdo-5b16e6b0a97e4e7a713734fbb712dddfaa45ee0e.tar.gz brdo-5b16e6b0a97e4e7a713734fbb712dddfaa45ee0e.tar.bz2 |
- Patch #36313 by assimmonds: make the search box look identical to Drupal 4.6
-rw-r--r-- | modules/system.module | 4 | ||||
-rw-r--r-- | modules/system/system.module | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/system.module b/modules/system.module index 67e75a4bc..9b4f92a8f 100644 --- a/modules/system.module +++ b/modules/system.module @@ -1130,12 +1130,12 @@ function system_theme_settings($key = '') { function search_box() { $form['#action'] = url('search'); $form['keys'] = array('#type' => 'textfield', '#size'=> 15, '#value' => '', '#attributes' => array('alt' => t('Enter the terms you wish to search for.'))); - $form['submit'] = array('#type' => 'submit', '#value' => t('search')); + $form['submit'] = array('#type' => 'submit', '#value' => t('Search')); return drupal_get_form('search_box', $form); } function theme_search_box($form) { - $output = '<div id="search">'; + $output = '<div id="search" class="container-inline">'; $output .= form_render($form); $output .= '</div>'; return $output; diff --git a/modules/system/system.module b/modules/system/system.module index 67e75a4bc..9b4f92a8f 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1130,12 +1130,12 @@ function system_theme_settings($key = '') { function search_box() { $form['#action'] = url('search'); $form['keys'] = array('#type' => 'textfield', '#size'=> 15, '#value' => '', '#attributes' => array('alt' => t('Enter the terms you wish to search for.'))); - $form['submit'] = array('#type' => 'submit', '#value' => t('search')); + $form['submit'] = array('#type' => 'submit', '#value' => t('Search')); return drupal_get_form('search_box', $form); } function theme_search_box($form) { - $output = '<div id="search">'; + $output = '<div id="search" class="container-inline">'; $output .= form_render($form); $output .= '</div>'; return $output; |