summaryrefslogtreecommitdiff
path: root/modules/system.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system.module')
-rw-r--r--modules/system.module4
1 files changed, 2 insertions, 2 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;