diff options
-rw-r--r-- | modules/system.module | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/system.module b/modules/system.module index 6c37fd071..67e75a4bc 100644 --- a/modules/system.module +++ b/modules/system.module @@ -1129,7 +1129,7 @@ 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.'), 'class' => 'form-text')); + $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')); return drupal_get_form('search_box', $form); } diff --git a/modules/system/system.module b/modules/system/system.module index 6c37fd071..67e75a4bc 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1129,7 +1129,7 @@ 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.'), 'class' => 'form-text')); + $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')); return drupal_get_form('search_box', $form); } |