From 92a2b51acc35c74f447d5fa8380c25f751b8e6fb Mon Sep 17 00:00:00 2001
From: Florian Azizian <florian.azizian@maarch.org>
Date: Fri, 4 Sep 2015 15:51:28 +0000
Subject: [PATCH] FIX #2482 pb encodage apostrophe

---
 core/trunk/core/class/class_functions.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/trunk/core/class/class_functions.php b/core/trunk/core/class/class_functions.php
index 19856f194f5..9a99d12981c 100644
--- a/core/trunk/core/class/class_functions.php
+++ b/core/trunk/core/class/class_functions.php
@@ -592,7 +592,7 @@ class functions
                             var label3 = document.createTextNode("<?php functions::xecho($_SESSION['location_bar']['level3']['label']);?>");
                             link3.appendChild(label3);
                             bar.appendChild(link3);
-                            var text3 = document.createTextNode(" > <?php functions::xecho($_SESSION['location_bar']['level4']['label']);?>");
+                            var text3 = document.createTextNode(" > <?php echo $_SESSION['location_bar']['level4']['label'];?>");
                             bar.appendChild(text3);
                         }
                     </script><?php
-- 
GitLab