Show
Ignore:
Timestamp:
04/03/11 11:34:23 (2 years ago)
Author:
Torben Brodt
Message:

display: n/a info

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • g-map/files/lib/page/MapAjaxPage.class.php

    r1372 r1373  
    9191                if($this->action == 'pick') { 
    9292                        $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 { 
    94101                                $this->datapoints = $this->getUsers($ids); 
    95102                        }