Line 425 of geobrowser.module

  			$nid_count = $term_count + db_num_rows($tid_query);

is incorrect. We're incrementing $nid_count, should be

   			$nid_count = $nid_count + db_num_rows($tid_query);

If the last category queried in the loop containing this statement has no nodes, the module thinks there are no nodes at all.

Comments

phayes’s picture

Status: Active » Fixed

Thanks for finding this..
Fixed

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.