From cf9c0734ef4fbc939327491feb74dab877bdbe32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lder=20Duarte?= Date: Mon, 20 May 2013 18:01:43 +0200 Subject: [PATCH] Update utilities.php Removed \\/ from the addcslashes(); would become: <\/b> sorry! --- libraries/utilities.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/utilities.php b/libraries/utilities.php index 89a0c7b..38e0e1b 100644 --- a/libraries/utilities.php +++ b/libraries/utilities.php @@ -89,7 +89,7 @@ protected static function build_array($lang, $depth = 1) $depth = 1; continue; } - $out .= str_repeat("\t", $depth)."'".$key."' => '".addcslashes($value, "'\\/")."',\n"; + $out .= str_repeat("\t", $depth)."'".$key."' => '".addcslashes($value, "'")."',\n"; } return $out; }