Fix empty map.
This commit is contained in:
parent
2285106cad
commit
685803792e
@ -741,6 +741,10 @@ function opalestate_get_property_walkscore_results( $property ) {
|
|||||||
|
|
||||||
$map = $property->get_map();
|
$map = $property->get_map();
|
||||||
|
|
||||||
|
if ( ! $map || ! is_array( $map ) || ! isset( $map['latitude'] ) || ! isset( $map['longitude'] ) ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$latitude = $map['latitude'];
|
$latitude = $map['latitude'];
|
||||||
$longitude = $map['longitude'];
|
$longitude = $map['longitude'];
|
||||||
|
|
||||||
|
@ -16,6 +16,10 @@ if ( ! $categories ) {
|
|||||||
|
|
||||||
$map = $property->get_map();
|
$map = $property->get_map();
|
||||||
|
|
||||||
|
if ( ! $map || ! is_array( $map ) || ! isset( $map['latitude'] ) || ! isset( $map['longitude'] ) ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$latitude = $map['latitude'];
|
$latitude = $map['latitude'];
|
||||||
$longitude = $map['longitude'];
|
$longitude = $map['longitude'];
|
||||||
if ( ! $latitude || ! $longitude ) {
|
if ( ! $latitude || ! $longitude ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user