mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fixed regex for negative lat+lng
This commit is contained in:
@@ -802,7 +802,7 @@ function ceph_rrd($gtype) {
|
|||||||
* @return array Containing the lat and lng coords
|
* @return array Containing the lat and lng coords
|
||||||
**/
|
**/
|
||||||
function parse_location($location) {
|
function parse_location($location) {
|
||||||
preg_match('/(\[)([0-9\. ]+),[ ]*([0-9\. ]+)(\])/', $location, $tmp_loc);
|
preg_match('/(\[)(-?[0-9\. ]+),[ ]*(-?[0-9\. ]+)(\])/', $location, $tmp_loc);
|
||||||
if (!empty($tmp_loc[2]) && !empty($tmp_loc[3])) {
|
if (!empty($tmp_loc[2]) && !empty($tmp_loc[3])) {
|
||||||
return array('lat' => $tmp_loc[2], 'lng' => $tmp_loc[3]);
|
return array('lat' => $tmp_loc[2], 'lng' => $tmp_loc[3]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user