Mantis Bug Tracker 发送邮件的日期格式

发布于 2024-08-16 03:06:01 字数 256 浏览 6 评论 0原文

我正在使用 Mantis bug tracker v1.1.8。当从 mantis 发送的邮件到达我公司的收件箱时,收件箱页面上显示的邮件日期为“未知日期”。 打开消息后,我可以看到实际日期。从 Mantis 收到的邮件日期格式为 Thu, 31 Dec 2009 12:30:28 +0580,而其他邮件的日期格式为 Mon, 21 Dec 2009 06:56:18 +0100 [12/21/ 2009 年上午 11:26:18 国际标准时间]。

有办法解决这个问题吗? 谢谢

Im using Mantis bug tracker v1.1.8. When mails sent from mantis arrive in my company inbox,the date shown on the Inbox page is "Unknown Date" for the message.
On opening the message, i can see the actual date. The date of mails received from Mantis is of the format Thu, 31 Dec 2009 12:30:28 +0580, whereas the date format of other mails is like Mon, 21 Dec 2009 06:56:18 +0100 [12/21/2009 11:26:18 AM IST].

Any way to fix this problem ?
Thank You

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

维持三分热 2024-08-23 03:06:01

config_inc.php Mantis 配置文件中,您应该能够为“完整日期”设置定义自己的日期格式:

  / / Setting the language and date format  
  $ g_default_language = 'french';  
  $ g_short_date_format = 'dm-Y';  
  $ g_normal_date_format = 'dmY H: i';  
  $ g_complete_date_format = 'dmY H: i';

它应该遵循 php 日期格式约定。然后,您可以使用这些格式约定来构建您需要的确切日期输出。

In the config_inc.php Mantis configuration file, you should be able to define your own date format for the "complete date" setting:

  / / Setting the language and date format  
  $ g_default_language = 'french';  
  $ g_short_date_format = 'dm-Y';  
  $ g_normal_date_format = 'dmY H: i';  
  $ g_complete_date_format = 'dmY H: i';

It should follow the php date format convention. You could then use those format conventions to build the exact date output you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文