From 0f595268f54d5e999c5ef9b84d307b48eec6788f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=B4me=20Bernigaud?= <come.bernigaud@opensides.be>
Date: Mon, 15 Dec 2014 13:59:25 +0100
Subject: [PATCH] Fixes #3516 Fixed string in class_timezone.inc

---
 include/class_timezone.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class_timezone.inc b/include/class_timezone.inc
index e9ff8ab6e..897d6eb39 100644
--- a/include/class_timezone.inc
+++ b/include/class_timezone.inc
@@ -56,7 +56,7 @@ class timezone {
       $tz = $config->get_cfg_value("timezone");
 
       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 = $tz_delta / 3600;
-- 
GitLab