10 * Smarty indent modifier plugin
14 * Purpose: indent lines of text
15 * @link http://smarty.php.net/manual/en/language.modifier.indent.php
16 * indent (Smarty online manual)
22 function smarty_modifier_indent($string,$chars=4,$char=" ")
24 return preg_replace('!^!m',str_repeat($char,$chars),$string);