removed mods directory from the ATutor codebase
[atutor.git] / mods / phpdoc2 / PhpDocumentor / phpDocumentor / Smarty-2.6.0 / libs / plugins / modifier.strip.php
diff --git a/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip.php b/mods/phpdoc2/PhpDocumentor/phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip.php
deleted file mode 100644 (file)
index fc67558..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php\r
-/**\r
- * Smarty plugin\r
- * @package Smarty\r
- * @subpackage plugins\r
- */\r
-\r
-\r
-/**\r
- * Smarty strip modifier plugin\r
- *\r
- * Type:     modifier<br>\r
- * Name:     strip<br>\r
- * Purpose:  Replace all repeated spaces, newlines, tabs\r
- *           with a single space or supplied replacement string.<br>\r
- * Example:  {$var|strip} {$var|strip:"&nbsp;"}\r
- * Date:     September 25th, 2002\r
- * @link http://smarty.php.net/manual/en/language.modifier.strip.php\r
- *          strip (Smarty online manual)\r
- * @author   Monte Ohrt <monte@ispi.net>\r
- * @version  1.0\r
- * @param string\r
- * @param string\r
- * @return string\r
- */\r
-function smarty_modifier_strip($text, $replace = ' ')\r
-{\r
-       return preg_replace('!\s+!', $replace, $text);\r
-}\r
-\r
-/* vim: set expandtab: */\r
-\r
-?>\r