Use a valid timezone name when no timezone is set

This commit is contained in:
Joas Schilling 2015-02-23 17:49:53 +01:00
Родитель ff2b63f21f
Коммит 8ffc7eb6b6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -101,7 +101,7 @@ class EmailNotification extends \OC\BackgroundJob\TimedJob {
}
$language = (isset($userLanguages[$user])) ? $userLanguages[$user] : $default_lang;
$timezone = (isset($userTimezones[$user])) ? $userTimezones[$user] : '';
$timezone = (isset($userTimezones[$user])) ? $userTimezones[$user] : 'UTC';
$this->mqHandler->sendEmailToUser($user, $userEmails[$user], $language, $timezone, $data);
}