From 324944f3329b99e527f12c65e4a0e1358e8f180a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 7 Nov 2010 18:14:48 +0300 Subject: implement per-user timezone support; store dates in UTC internally (closes #254) --- mobile/functions.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'mobile/functions.php') diff --git a/mobile/functions.php b/mobile/functions.php index 18440bab9..6dec6440d 100644 --- a/mobile/functions.php +++ b/mobile/functions.php @@ -434,13 +434,8 @@ WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]); - if (get_pref($link, 'HEADLINES_SMART_DATE')) { - $updated_fmt = smart_date_time(strtotime($line["updated"])); - } else { - $short_date = get_pref($link, 'SHORT_DATE_FORMAT'); - $updated_fmt = date($short_date, strtotime($line["updated"])); - } - + $updated_fmt = make_local_datetime($link, $line['updated'], false); + $title = $line["title"]; $article_link = $line["link"]; -- cgit v1.2.3-54-g00ecf