smarty dir moved
[mirrors/Kyberia-bloodline.git] / wwwroot / smarty / Smarty-2.6.10 / libs / plugins / modifier.strip_tags.php
diff --git a/wwwroot/smarty/Smarty-2.6.10/libs/plugins/modifier.strip_tags.php b/wwwroot/smarty/Smarty-2.6.10/libs/plugins/modifier.strip_tags.php
deleted file mode 100644 (file)
index 45f1ec1..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/**
- * Smarty plugin
- * @package Smarty
- * @subpackage plugins
- */
-
-
-/**
- * Smarty strip_tags modifier plugin
- *
- * Type:     modifier<br>
- * Name:     strip_tags<br>
- * Purpose:  strip html tags from text
- * @link http://smarty.php.net/manual/en/language.modifier.strip.tags.php
- *          strip_tags (Smarty online manual)
- * @param string
- * @param boolean
- * @return string
- */
-function smarty_modifier_strip_tags($string, $replace_with_space = true)
-{
-    if ($replace_with_space)
-        return preg_replace('!<[^>]*?>!', ' ', $string);
-    else
-        return strip_tags($string);
-}
-
-/* vim: set expandtab: */
-
-?>
This page took 0.131677 seconds and 4 git commands to generate.