Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Vanilla Timestamp Issue.
I found out an issue showing timestamp values for user activities. This happens here in vanilla forum as well as in my deployment.
I am writing a post at Oct 04, 2010 - 3:49PM IST. Now instead of actual date it shows time 30mins before. Now in my case it would be 3.20PM
I am writing a post at Oct 04, 2010 - 3:49PM IST. Now instead of actual date it shows time 30mins before. Now in my case it would be 3.20PM
2
Comments
Posts: 4
This was the post time details showing for this post.
Quite a noticeable bug for Forum application any insight to this.
Your posts here are showing up as UTC+5 (ie Pakistan time zone) sometimes posts on a webpage appear with a correctly converted time but sql database is running in a different timezone, depends on your hosting companies policy and does NOT change with DST changes, which I understand India does not use. The half-hour off timezones can cause confusion working out time in the rest of the world.
posted at 13:26 MyLocalTime
-> ;
+---------------------+
| now() |
+---------------------+
| 2010-10-04 19:52:29 |
+---------------------+
1 row in set (0.00 sec)
<?php
$curr_time_zone=date_default_timezone_get();
echo "<br> Current Zone : " .$curr_time_zone . date('r');
?>
Output from above php code
------------------------
Current Zone : Asia/CalcuttaMon, 04 Oct 2010 19:52:16 +0530
See my this post date in this forum itself. Apparently am having same problem.