From c8ae2497b7e4c7393210ed186acd672a0040389f Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Wed, 03 Sep 2008 12:03:19 -0400 Subject: [PATCH] Auto-detect client language and timezone if desired by config/prefs --- program/include/rcube_config.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index 43f735b..98e688d 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -84,9 +84,9 @@ ini_set('log_errors', 1); if ($this->prop['log_driver'] == 'syslog') { - ini_set('error_log', 'syslog'); + ini_set('error_log', 'syslog'); } else { - ini_set('error_log', $this->prop['log_dir'].'/errors'); + ini_set('error_log', $this->prop['log_dir'].'/errors'); } } if ($this->prop['debug_level'] & 4) { -- Gitblit v1.9.1