diff options
| author | wn_ <invalid@email.com> | 2024-12-15 18:14:42 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2024-12-15 18:39:03 +0000 |
| commit | f9b2291c28e7036276134aac84ec456fbd297d30 (patch) | |
| tree | 82299fdc13a4e0950126c0ec889d4a9e020748f6 /classes/Pref_System.php | |
| parent | 119c7f13dcb9b91368304e3affd0219108ec490f (diff) | |
Don't bother passing unused arguments to 'TimeHelper::make_local_datetime()'.
There's no point in passing '$long' unless '$no_smart_dt' is set to 'true'.
Diffstat (limited to 'classes/Pref_System.php')
| -rw-r--r-- | classes/Pref_System.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Pref_System.php b/classes/Pref_System.php index 885eabdac..225fc49b9 100644 --- a/classes/Pref_System.php +++ b/classes/Pref_System.php @@ -143,7 +143,7 @@ class Pref_System extends Handler_Administrative { <td class='errstr'><?= $line["errstr"] . "\n" . $line["context"] ?></td> <td class='login'><?= $line["login"] ?></td> <td class='timestamp'> - <?= TimeHelper::make_local_datetime($line["created_at"], false) ?> + <?= TimeHelper::make_local_datetime($line['created_at']) ?> </td> </tr> <?php } ?> |