Minahito
minah****@users*****
2005年 11月 25日 (金) 00:27:18 JST
Index: xoops2jp/html/class/smarty/plugins/modifier.xoops_date_format.php diff -u xoops2jp/html/class/smarty/plugins/modifier.xoops_date_format.php:1.1.2.1 xoops2jp/html/class/smarty/plugins/modifier.xoops_date_format.php:1.1.2.2 --- xoops2jp/html/class/smarty/plugins/modifier.xoops_date_format.php:1.1.2.1 Tue Nov 1 20:57:38 2005 +++ xoops2jp/html/class/smarty/plugins/modifier.xoops_date_format.php Fri Nov 25 00:27:18 2005 @@ -4,13 +4,13 @@ * Smarty plugin * ------------------------------------------------------------- * Type: modifier - * Name: xoopsdate_format + * Name: xoops_date_format * Purpose: format datestamps via strftime ( use xoops timestamp ) * Input: time: input date unixtime * format: strftime format for output * ------------------------------------------------------------- */ -function smarty_modifier_xoopsdate_format($time, $format="%b %e, %Y") +function smarty_modifier_xoops_date_format($time, $format="%b %e, %Y") { if($time && is_numeric($time)) { return strftime ( $format, xoops_getUserTimestamp ( $time ) );