diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index d52197656..a0dc4eb26 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1194,8 +1194,7 @@ function system_theme_settings($key = '') { * Output a search form. */ function search_box($path = NULL) { - $form['#action'] = is_null($path) ? url('search') : url($path); - $form['keys'] = array('#type' => 'textfield', '#size'=> 15, '#value' => '', '#attributes' => array('alt' => t('Enter the terms you wish to search for.'))); + $form['keys'] = array('#type' => 'textfield', '#size'=> 15, '#default_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); } |