Commit b8694ed1 authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3516 Fixed string in class_timezone.inc

Showing with 1 addition and 1 deletion
+1 -1
...@@ -56,7 +56,7 @@ class timezone { ...@@ -56,7 +56,7 @@ class timezone {
$tz = $config->get_cfg_value("timezone"); $tz = $config->get_cfg_value("timezone");
if (!@date_default_timezone_set($tz)) { if (!@date_default_timezone_set($tz)) {
msg_dialog::display(_("Configuration error"), sprintf(_("The timezone setting '%s' in your fusiondirectory.conf is not valid. Cannot calculate correct timezone offset."), $tz), ERROR_DIALOG); msg_dialog::display(_("Configuration error"), sprintf(_("The timezone setting '%s' in your configuration is not valid. Cannot calculate correct timezone offset."), $tz), ERROR_DIALOG);
} }
$tz_delta = date("Z", $stamp); $tz_delta = date("Z", $stamp);
$tz_delta = $tz_delta / 3600; $tz_delta = $tz_delta / 3600;
......
  • bmortier @bmortier

    mentioned in issue #1174

    By Côme Chilliet on 2017-09-02T15:15:50 (imported from GitLab)

    ·

    mentioned in issue #1174

    By Côme Chilliet on 2017-09-02T15:15:50 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment