summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-09-22 09:28:13 +0000
committeralecpl <alec@alec.pl>2008-09-22 09:28:13 +0000
commitcdc539d5616b9b8806a73db3b9e5270deda45472 (patch)
treee070469c3c4103c893214b114c70896812ccd9bb
parent34b8b1e133f2fac375f661fdc31f45c5096dabf8 (diff)
- there's no 'locale_string' option now
-rw-r--r--program/include/rcube_config.php4
-rw-r--r--program/localization/index.inc1
2 files changed, 0 insertions, 5 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php
index c3b0c1832..0723834bf 100644
--- a/program/include/rcube_config.php
+++ b/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);
diff --git a/program/localization/index.inc b/program/localization/index.inc
index ba87d914f..215dfa7d3 100644
--- a/program/localization/index.inc
+++ b/program/localization/index.inc
@@ -128,5 +128,4 @@ $rcube_language_aliases = array(
'zh' => 'zh_CN',
);
-
?>