smarty dir moved
[mirrors/Kyberia-bloodline.git] / wwwroot / smarty / Smarty-2.6.10 / libs / plugins / modifier.indent.php
diff --git a/wwwroot/smarty/Smarty-2.6.10/libs/plugins/modifier.indent.php b/wwwroot/smarty/Smarty-2.6.10/libs/plugins/modifier.indent.php
deleted file mode 100644 (file)
index 1642bac..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-/**
- * Smarty plugin
- * @package Smarty
- * @subpackage plugins
- */
-
-
-/**
- * Smarty indent modifier plugin
- *
- * Type:     modifier<br>
- * Name:     indent<br>
- * Purpose:  indent lines of text
- * @link http://smarty.php.net/manual/en/language.modifier.indent.php
- *          indent (Smarty online manual)
- * @param string
- * @param integer
- * @param string
- * @return string
- */
-function smarty_modifier_indent($string,$chars=4,$char=" ")
-{
-    return preg_replace('!^!m',str_repeat($char,$chars),$string);
-}
-
-?>
This page took 0.131222 seconds and 4 git commands to generate.