summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-01-24 07:42:34 +0000
committerthomascube <thomas@roundcube.net>2012-01-24 07:42:34 +0000
commite65c36d172a737d5a69e10cdec4aeb87c2d2e12e (patch)
treeee7eebc10bb75bcbeb686204a65d9d8db9a24d90 /program
parentb4e41f006b26fbb0d372eca5b0636a886dbc571f (diff)
Fixed typo
Diffstat (limited to 'program')
-rw-r--r--program/include/rcube_config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php
index 7eb295015..46906dde1 100644
--- a/program/include/rcube_config.php
+++ b/program/include/rcube_config.php
@@ -179,8 +179,8 @@ class rcube_config
if (isset($this->prop[$name])) {
$result = $this->prop[$name];
}
- else if (isset($this->lagacy_props[$name])) {
- return $this->get($this->lagacy_props[$name], $def);
+ else if (isset($this->legacy_props[$name])) {
+ return $this->get($this->legacy_props[$name], $def);
}
else {
$result = $def;