X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=smarty%2Fplugins%2Fmodifier.lower.php;h=20e7a8d39c641888b3c29c77317f8fb65ecee944;hb=94d8eb634c53fea341b849bf13f9224e70db2d16;hp=ee37423329101c9db82c41016dc93f406e9795a5;hpb=49b2955320c19e4e23097c66e438e51fdc70fc58;p=contagged diff --git a/smarty/plugins/modifier.lower.php b/smarty/plugins/modifier.lower.php index ee37423..20e7a8d 100644 --- a/smarty/plugins/modifier.lower.php +++ b/smarty/plugins/modifier.lower.php @@ -14,12 +14,13 @@ * Purpose: convert string to lowercase * @link http://smarty.php.net/manual/en/language.modifier.lower.php * lower (Smarty online manual) + * @author Monte Ohrt * @param string * @return string */ function smarty_modifier_lower($string) { - return strtolower($string); + return strtolower($string); } ?>