]> git.sur5r.net Git - contagged/blobdiff - smarty/plugins/modifier.lower.php
Smarty update to 2.6.14
[contagged] / smarty / plugins / modifier.lower.php
index ee37423329101c9db82c41016dc93f406e9795a5..20e7a8d39c641888b3c29c77317f8fb65ecee944 100644 (file)
  * Purpose:  convert string to lowercase
  * @link http://smarty.php.net/manual/en/language.modifier.lower.php
  *          lower (Smarty online manual)
+ * @author   Monte Ohrt <monte at ohrt dot com>
  * @param string
  * @return string
  */
 function smarty_modifier_lower($string)
 {
-       return strtolower($string);
+    return strtolower($string);
 }
 
 ?>