]> git.sur5r.net Git - contagged/blobdiff - smarty/plugins/modifier.upper.php
Smarty update to 2.6.14
[contagged] / smarty / plugins / modifier.upper.php
index 9d9ef3567d64d175d5154a74e35a4a92989b8d14..c12480fbda7adc5b1bdcca41f1c4d193b0bb258e 100644 (file)
  * Purpose:  convert string to uppercase
  * @link http://smarty.php.net/manual/en/language.modifier.upper.php
  *          upper (Smarty online manual)
+ * @author   Monte Ohrt <monte at ohrt dot com>
  * @param string
  * @return string
  */
 function smarty_modifier_upper($string)
 {
-       return strtoupper($string);
+    return strtoupper($string);
 }
 
 ?>