Changeset 1373
- Timestamp:
- 04/03/11 11:34:23 (2 years ago)
- Files:
-
- 1 modified
-
g-map/files/lib/page/MapAjaxPage.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
g-map/files/lib/page/MapAjaxPage.class.php
r1372 r1373 91 91 if($this->action == 'pick') { 92 92 $ids = $cluster->getIDs($markers, $this->lat, $this->lon); 93 if($ids !== null) { 93 if($ids === null) { 94 $this->datapoints = array(); 95 $this->datapoints[] = array( 96 0, 97 'n/a', 98 '' 99 ); 100 } else { 94 101 $this->datapoints = $this->getUsers($ids); 95 102 }
