From 70bea6bffe1674738e39070e18228cb781455ae9 Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Wed, 9 Jan 2008 22:56:21 +0100 Subject: [PATCH] Fix a double entity Signed-off-by: Florent Bruneau --- plugins/function.display_address.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.1.4