Index: modules/zeitgeist/zeitgeist.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/zeitgeist/zeitgeist.module,v
retrieving revision 1.6
diff -u -r1.6 zeitgeist.module
--- modules/zeitgeist/zeitgeist.module	22 Mar 2006 19:20:46 -0000	1.6
+++ modules/zeitgeist/zeitgeist.module	23 Mar 2006 22:52:12 -0000
@@ -147,7 +147,7 @@
  * Trap searches. Warning: the actual value stored by search.module
  * in $form_values['#action'] seems to be version-dependent. 
  * In 4.7beta6, it is a site-relative path from root, not an absolute or relative path.
- * 
+ *
  * @param string $form_id A registered form_id. We're only interested in the search form
  * @param array $form_values
  * @return void
@@ -160,7 +160,7 @@
     return;
 
   $action = $form_values['#action'];
-  if (($pos = strpos($action, '/search/')) > 0) // Find offset first match in URL
+  if (($pos = strpos($action, '/search/')) !== 0) // Find offset first match in URL
     { 
     $action = substr($action, $pos); 
     $arAction = explode('/', $action) ;
@@ -474,4 +474,4 @@
   $ret = theme('item_list', $arScores);
   unset ($arScores);
   return $ret;
-  }
\ No newline at end of file
+  }
