summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-24 19:28:08 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-24 19:28:08 +0000
commitc9b342e3e183296b60ec0af47aae5dd4a34852ff (patch)
tree7dd1ba69013fa18bdaaba2d4cfbad84172ea2d68
parentf5d3fa10086e4117c6ea26596ffbe84258f01a93 (diff)
downloadbrdo-c9b342e3e183296b60ec0af47aae5dd4a34852ff.tar.gz
brdo-c9b342e3e183296b60ec0af47aae5dd4a34852ff.tar.bz2
- Patch #38692 by saerdna: removed duplicate form-text class.
-rw-r--r--modules/system.module2
-rw-r--r--modules/system/system.module2
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);
}