From eb2152f3b4e272b37318a49144127f4ff62f0478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez?= Date: Fri, 2 Oct 2015 06:05:05 +0200 Subject: [PATCH] Fix typo in method name "getTimestampOffset" This method was not used anywhere so it had no impact anyway. --- app/Libraries/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Libraries/Utils.php b/app/Libraries/Utils.php index a04d08b25a2b..60e8b378c212 100644 --- a/app/Libraries/Utils.php +++ b/app/Libraries/Utils.php @@ -330,7 +330,7 @@ class Utils return $date->format($format); } - public static function getTiemstampOffset() + public static function getTimestampOffset() { $timezone = new DateTimeZone(Session::get(SESSION_TIMEZONE, DEFAULT_TIMEZONE)); $datetime = new DateTime('now', $timezone);