diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-12-16 04:39:54 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-12-16 04:39:54 +0000 |
| commit | 13804c4beb3b5299829e756130753cc21956df57 (patch) | |
| tree | 82299fdc13a4e0950126c0ec889d4a9e020748f6 /classes/Pref_Prefs.php | |
| parent | d5b1258d294fb8b0e43344a9925a9202925fcb02 (diff) | |
| parent | f9b2291c28e7036276134aac84ec456fbd297d30 (diff) | |
Merge branch 'feature/smart_date_time_never' into 'master'
Consistently "smart display" the Unix epoch as "Never", clean up calls to `TimeHelper::make_local_datetime()`
See merge request tt-rss/tt-rss!89
Diffstat (limited to 'classes/Pref_Prefs.php')
| -rw-r--r-- | classes/Pref_Prefs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/Pref_Prefs.php b/classes/Pref_Prefs.php index 7d1c0e9eb..94c38c177 100644 --- a/classes/Pref_Prefs.php +++ b/classes/Pref_Prefs.php @@ -1520,10 +1520,10 @@ class Pref_Prefs extends Handler_Protected { <?= htmlspecialchars($pass["title"]) ?> </td> <td class='text-muted'> - <?= TimeHelper::make_local_datetime($pass['created'], false) ?> + <?= TimeHelper::make_local_datetime($pass['created']) ?> </td> <td class='text-muted'> - <?= TimeHelper::make_local_datetime($pass['last_used'], false) ?> + <?= TimeHelper::make_local_datetime($pass['last_used']) ?> </td> </tr> <?php } ?> |