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:
Diffstat (limited to 'core/SmartyPlugins/modifier.unescape.php')
-rw-r--r--core/SmartyPlugins/modifier.unescape.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/SmartyPlugins/modifier.unescape.php b/core/SmartyPlugins/modifier.unescape.php
index 860841422d..971e9eabcc 100644
--- a/core/SmartyPlugins/modifier.unescape.php
+++ b/core/SmartyPlugins/modifier.unescape.php
@@ -1,10 +1,10 @@
<?php
/**
* Piwik - Open source web analytics
- *
+ *
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
+ *
* @category Piwik
* @package SmartyPlugins
*/
@@ -21,7 +21,7 @@
*/
function smarty_modifier_unescape($string, $char_set = 'UTF-8')
{
- return html_entity_decode($string, ENT_QUOTES, $char_set);
+ return html_entity_decode($string, ENT_QUOTES, $char_set);
}
/* vim: set expandtab: */