diff --git finder_wizard.module finder_wizard.module
index 8fad575..8132922 100755
--- finder_wizard.module
+++ finder_wizard.module
@@ -204,7 +204,10 @@ function finder_wizard_finderapi(&$object, $op, $a3 = NULL, $a4 = NULL) {
 /**
  * Implementation of hook_form_FORM_ID_alter().
  */
-function finder_wizard_form_finder_form_alter(&$form, &$form_state) {
+function finder_wizard_form_alter(&$form, &$form_state, $form_id) {
+  if (strpos($form_id, 'finder_form') === FALSE) {
+    return;
+  }
 
   $finder = finder_load($form['finder_id']['#value']);
 
