diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-05 00:26:36 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-05 00:26:36 +0000 |
commit | cd430165d706c6a747f81e663f756e60a4a0377f (patch) | |
tree | 88915ae0fe216462d071760a005489e9838fff77 /modules/search/search.module | |
parent | 6839ce965fb7ac37bf735a0b169009cca7529429 (diff) | |
download | brdo-cd430165d706c6a747f81e663f756e60a4a0377f.tar.gz brdo-cd430165d706c6a747f81e663f756e60a4a0377f.tar.bz2 |
#73884 by RobRoy, various code cleanup.
Diffstat (limited to 'modules/search/search.module')
-rw-r--r-- | modules/search/search.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 66454797c..566c2c4db 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -243,7 +243,7 @@ function search_admin_settings() { * Menu callback: confirm wiping of the index. */ function search_wipe_confirm() { - return confirm_form('search_wipe_confirm', $form, t('Are you sure you want to re-index the site?'), + return confirm_form('search_wipe_confirm', array(), t('Are you sure you want to re-index the site?'), 'admin/settings/search', t(' The search index is not cleared but systematically updated to reflect the new settings. Searching will continue to work but new content won\'t be indexed until all existing content has been re-indexed. This action cannot be undone.'), t('Re-index site'), t('Cancel')); } |