Index: find_path.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/find_path/find_path.module,v
retrieving revision 1.1.2.7
diff -u -F^function -r1.1.2.7 find_path.module
--- find_path.module	7 May 2007 22:47:29 -0000	1.1.2.7
+++ find_path.module	24 Aug 2007 21:19:37 -0000
@@ -152,14 +152,15 @@ function find_path_results( $path, $exac
     }
   }
 
-  if( count($found) ) {
+  $results = '';
+  if (count($found)) {
     sort($found);
-    foreach( $found as $item ) {
-      $fs['#title'] = '<strong>'. array_shift( $item['title'] ) .'</strong> : ' . implode( ' : ', $item['title'] );
-      if( !empty($item['aliases']) ) {
+    foreach($found as $item) {
+      $fs['#title'] = '<strong>'. array_shift($item['title']) .'</strong> : '. implode(' : ', $item['title']);
+      if (!empty($item['aliases'])) {
         $fs['#children'] = theme('table', array(), $item['aliases']);
       }
-      $results .= theme('fieldset', $fs );
+      $results .= theme('fieldset', $fs);
     }
   }
   else {
