Fix typo in method name "getTimestampOffset"

This method was not used anywhere so it had no impact anyway.
This commit is contained in:
Christian González 2015-10-02 06:05:05 +02:00
parent 04dfaf9b49
commit eb2152f3b4

View File

@ -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);