diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-11-24 19:28:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-11-24 19:28:08 +0000 |
commit | c9b342e3e183296b60ec0af47aae5dd4a34852ff (patch) | |
tree | 7dd1ba69013fa18bdaaba2d4cfbad84172ea2d68 /modules/system.module | |
parent | f5d3fa10086e4117c6ea26596ffbe84258f01a93 (diff) | |
download | brdo-c9b342e3e183296b60ec0af47aae5dd4a34852ff.tar.gz brdo-c9b342e3e183296b60ec0af47aae5dd4a34852ff.tar.bz2 |
- Patch #38692 by saerdna: removed duplicate form-text class.
Diffstat (limited to 'modules/system.module')
-rw-r--r-- | modules/system.module | 2 |
1 files changed, 1 insertions, 1 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); } |