diff options
Diffstat (limited to 'include/datetime.php')
-rw-r--r-- | include/datetime.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/datetime.php b/include/datetime.php index 9f145e5c7..e8ae01344 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -112,7 +112,7 @@ function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d } catch(Exception $e) { logger('datetime_convert: exception: ' . $e->getMessage()); - $d = newDateTime('now', $from_obj); + $d = new DateTime('now', $from_obj); } try { |