1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-10 14:29:14 +00:00

implement per-user timezone support; store dates in UTC internally (closes #254)

This commit is contained in:
Andrew Dolgov
2010-11-07 18:14:48 +03:00
parent f3f67c1b53
commit 324944f332
14 changed files with 656 additions and 72 deletions

View File

@@ -0,0 +1,7 @@
begin;
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('USER_TIMEZONE', 2, 'UTC', 'User timezone', 1);
update ttrss_version set schema_version = 68;
commit;