改变论坛显示的日期/时间

作者: GGX   发表于: 2009-10-22 22:32
分类: 

drupal论坛中的帖子日期/时间都是按照: "xxx时间以前" 来表示的
如果只想用年月日这样的方法表示, 也是可以的.
需要修改核心模块forum.modules

找到

$variables['time'] = isset($variables['topic']->timestamp) ? format_interval(time() - $variables['topic']->timestamp) : '';

替换为:

$variables['time'] = isset($variables['topic']->timestamp) ? format_date($variables['topic']->timestamp, 'medium') : '';

其中最后一个medium就是代表使用中等长度的时间格式, 也可以改成short或者long

需要提醒的是, 由于是修改核心模块, 下次升级的时候还需要这样改过来.

评论

发表新评论

The content of this field is kept private and will not be shown publicly.