summaryrefslogtreecommitdiff
path: root/libs/plugins/shared.escape_special_chars.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/plugins/shared.escape_special_chars.php')
-rw-r--r--libs/plugins/shared.escape_special_chars.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/libs/plugins/shared.escape_special_chars.php b/libs/plugins/shared.escape_special_chars.php
deleted file mode 100644
index 355b02b5..00000000
--- a/libs/plugins/shared.escape_special_chars.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-/**
- * Smarty shared plugin
- *
- * @package Smarty
- * @subpackage PluginsShared
- */
-/**
- * escape_special_chars common function
- * Function: smarty_function_escape_special_chars
- * Purpose: used by other smarty functions to escape
- * special chars except for already escaped ones
- *
- * @author Monte Ohrt <monte at ohrt dot com>
- *
- * @param string $string text that should by escaped
- *
- * @return string
- */
-function smarty_function_escape_special_chars($string)
-{
- if (!is_array($string)) {
- $string = htmlspecialchars((string) $string, ENT_COMPAT, Smarty::$_CHARSET, false);
- }
- return $string;
-}