Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbenakamoorthi <benaka.moorthi@gmail.com>2012-07-20 07:35:57 +0400
committerbenakamoorthi <benaka.moorthi@gmail.com>2012-07-20 07:35:57 +0400
commitd3bf00c34e06f7dee97df397b920775ea9a5f0ca (patch)
tree758eaab131bb2229a65d005e39a9e833901c3335 /core/SmartyPlugins
parent8631433591f3c0cab448523624ce0612b57d5754 (diff)
Refs #3194, reverted [6518] smarty escape modifier change.
git-svn-id: http://dev.piwik.org/svn/trunk@6523 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/SmartyPlugins')
-rw-r--r--core/SmartyPlugins/modifier.escape.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/SmartyPlugins/modifier.escape.php b/core/SmartyPlugins/modifier.escape.php
index 9cec6bd3c6..37bd02c3c7 100644
--- a/core/SmartyPlugins/modifier.escape.php
+++ b/core/SmartyPlugins/modifier.escape.php
@@ -28,7 +28,6 @@ function smarty_modifier_escape($string, $esc_type = 'html', $char_set = 'UTF-8'
{
switch ($esc_type) {
case 'html':
- $string = html_entity_decode($string, ENT_QUOTES, $char_set);
return htmlspecialchars($string, ENT_QUOTES, $char_set);
case 'htmlall':