diff options
author | thomascube <thomas@roundcube.net> | 2012-01-24 07:42:34 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-24 07:42:34 +0000 |
commit | e65c36d172a737d5a69e10cdec4aeb87c2d2e12e (patch) | |
tree | ee7eebc10bb75bcbeb686204a65d9d8db9a24d90 /program | |
parent | b4e41f006b26fbb0d372eca5b0636a886dbc571f (diff) |
Fixed typo
Diffstat (limited to 'program')
-rw-r--r-- | 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 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; |