summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_config.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-22 09:28:13 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-22 09:28:13 +0000
commitb243b75ecce538b72e633b69a1bc72e274ce624f (patch)
tree940479c53e3e3e557b151b3def59391e8d8a1ec2 /roundcubemail/program/include/rcube_config.php
parentbfc274f2877a80f0e748b2432212e32da3025ae9 (diff)
- there's no 'locale_string' option now
git-svn-id: https://svn.roundcube.net/trunk@1881 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_config.php')
-rw-r--r--roundcubemail/program/include/rcube_config.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/roundcubemail/program/include/rcube_config.php b/roundcubemail/program/include/rcube_config.php
index c3b0c1832..0723834bf 100644
--- a/roundcubemail/program/include/rcube_config.php
+++ b/roundcubemail/program/include/rcube_config.php
@@ -75,10 +75,6 @@ class rcube_config
$this->prop['log_dir'] = $this->prop['log_dir'] ? unslashify($this->prop['log_dir']) : INSTALL_PATH . 'logs';
$this->prop['temp_dir'] = $this->prop['temp_dir'] ? unslashify($this->prop['temp_dir']) : INSTALL_PATH . 'temp';
- // handle aliases
- if (isset($this->prop['locale_string']) && empty($this->prop['language']))
- $this->prop['language'] = $this->prop['locale_string'];
-
// set PHP error logging according to config
if ($this->prop['debug_level'] & 1) {
ini_set('log_errors', 1);