Feature #254
Time Zone Setting
| Status: | Assigned | Start: | ||
| Priority: | Low | Due date: | ||
| Assigned to: | Andrew Dolgov | % Done: | 0% |
|
| Category: | backend | |||
| Target version: | - | |||
| Resolution: |
Description
Sorry for the delay on this one!
When the TT-RSS server is is a different timezone to the user, all the posts are showed with incorrect time information.
They show with the time correct for the server, not for the user.
This can be fixed by the addition of the code
if (defined('TIME_ZONE')) {
date_default_timezone_set('TIME_ZONE');
}
which needs to be added to update_feeds.php, update_daemon2.php and any other script that performs a retrieval of the feeds.
Obviously, more work is then required to update the preferences page to allow the TIME_ZONE setting to chosen from the list of all legal timezones.
History
Updated by Andrew Dolgov 328 days ago
- Status changed from New to Assigned
Good idea. And yes, the per-user preference is needed for this. You can change that on the fly, right?