X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=plugins%2Ffunction.display_address.php;h=85a9210a1657e0194170f96983e3bae16bb1fc62;hb=c76545c351fae4e2298624ff9ee5bf854dc5a5b6;hp=00a6fb69d7258505b66f7d1cb9b51233deaaadfc;hpb=fde60e9f70691456b2c799c43c65126e9913791e;p=platal.git diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 00a6fb6..85a9210 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -38,7 +38,6 @@ function display_address_isIdentity($idt, $value, $test_reverse = true) function smarty_function_display_address($param, &$smarty) { - require_once('geocoding.inc.php'); $adr = $param['adr']; $txtad = $adr->text; if (!$txtad) { @@ -101,7 +100,7 @@ function smarty_function_display_address($param, &$smarty) if ($adr->phones() != null) { require_once 'function.display_phones.php'; $txthtml .= smarty_function_display_phones(array('tels' => $adr->phones()),$smarty); - } else if ($param['phones'] != null) { + } else if (isset($param['phones']) && count($param['phones'])) { require_once 'function.display_phones.php'; $txthtml .= smarty_function_display_phones(array('tels' => $param['phones']),$smarty); }