From: Florent Bruneau Date: Wed, 9 Jan 2008 21:56:21 +0000 (+0100) Subject: Fix a double entity X-Git-Tag: xorg/0.9.16~175 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=70bea6bffe1674738e39070e18228cb781455ae9;p=platal.git Fix a double entity Signed-off-by: Florent Bruneau --- diff --git a/plugins/function.display_address.php b/plugins/function.display_address.php index 9f8c457..07ce7c3 100644 --- a/plugins/function.display_address.php +++ b/plugins/function.display_address.php @@ -67,9 +67,9 @@ function smarty_function_display_address($param, &$smarty) if ($param['titre']) { if ($param['titre_div']) - $txthtml .= "
".$param['titre'].$map."
\n"; + $txthtml .= "
".pl_entity_decode($param['titre'])." ".$map."
\n"; else - $txthtml .= "".$param['titre']."".$map."
\n"; + $txthtml .= "".pl_entity_decode($param['titre'])." ".$map."
\n"; } foreach ($lines as $line) {