* @copyright 2001-2003 ispi of Lincoln, Inc. * @link http://smarty.php.net/ * @link http://jelix.org/ * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html */ /** * modifier plugin : convert \r\n, \r or \n to <
> * Example: {$text|nl2br} * @param string * @return string */ function jtpl_modifier_nl2br($string) { return nl2br($string); } ?>