removed mods directory from the ATutor codebase
[atutor.git] / mods / phpdoc2 / PhpDocumentor / phpDocumentor / Smarty-2.6.0 / libs / plugins / modifier.strip_tags.php
diff --git a/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip_tags.php b/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip_tags.php
deleted file mode 100644 (file)
index 516a87f..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php\r
-/**\r
- * Smarty plugin\r
- * @package Smarty\r
- * @subpackage plugins\r
- */\r
-\r
-\r
-/**\r
- * Smarty strip_tags modifier plugin\r
- *\r
- * Type:     modifier<br>\r
- * Name:     strip_tags<br>\r
- * Purpose:  strip html tags from text\r
- * @link http://smarty.php.net/manual/en/language.modifier.strip.tags.php\r
- *          strip_tags (Smarty online manual)\r
- * @param string\r
- * @param boolean\r
- * @return string\r
- */\r
-function smarty_modifier_strip_tags($string, $replace_with_space = true)\r
-{\r
-    if ($replace_with_space)\r
-        return preg_replace('!<[^>]*?>!', ' ', $string);\r
-    else\r
-        return strip_tags($string);\r
-}\r
-\r
-/* vim: set expandtab: */\r
-\r
-?>\r