From: Raphaël Barrois Date: Mon, 22 Mar 2010 11:58:43 +0000 (+0100) Subject: Fix smarty display_address for new model X-Git-Tag: xorg/1.0.0~332^2~20 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=3a5feb707e09dbafc5da41dee8d74ce64a43dc5a;p=platal.git Fix smarty display_address for new model Signed-off-by: Raphaël Barrois --- diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 1b3ad0a..28c6c4f 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -39,8 +39,9 @@ function display_address_isIdentity($idt, $value, $test_reverse = true) function smarty_function_display_address($param, &$smarty) { require_once('geocoding.inc.php'); - $txtad = $param['adr']['text']; - if (!$txtad && !$param['adr']['tels'] && !count($param['adr']['tels'])) { + $adr = $param['adr']; + $txtad = $adr->text; + if (!$txtad && !$adr->phones() && !count($adr->phones())) { return ""; } @@ -61,7 +62,7 @@ function smarty_function_display_address($param, &$smarty) $comment = ""; if ($param['adr']['comment'] != "") { - $commentHtml = str_replace(array('&', '"'), array('&', '"'), $param['adr']['comment']); + $commentHtml = str_replace(array('&', '"'), array('&', '"'), $adr->comment); $commentJs = str_replace(array('\\', '\''), array('\\\\', '\\\''), $commentHtml); $comment = "
\n"; } - if(isset($param['adr']['tels'])) { + if($adr->phones() != null) { require_once('function.display_phones.php'); - $txthtml .= smarty_function_display_phones($param['adr'],$smarty); + $txthtml .= smarty_function_display_phones(array('tels' => $adr->phones()),$smarty); } if (!$param['nodiv']) { $pos = $param['pos'] ? " style='float: " . $param['pos'] . "'" : '';