don't have an address property in the return if we have not got address data

This commit is contained in:
Brian Quinion
2012-05-04 00:59:26 +01:00
parent ee0afe8c64
commit 4d0693ea69
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@
$aPlace['icon'] = $aPointDetails['icon'];
}
if (isset($aPointDetails['address']))
if (isset($aPointDetails['address']) && sizeof($aPointDetails['address'])>0)
{
$aPlace['address'] = $aPointDetails['address'];
}