summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-24 07:42:34 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-24 07:42:34 +0000
commit0d7373571c23f6007d5d18ba4ca4550ecdffd0e9 (patch)
treed018a7fd3ddfb196d54757d237b53e38214bc490
parentb695597d043e3667ff68ea4a42c7d09ce45116cb (diff)
Fixed typo
git-svn-id: https://svn.roundcube.net/trunk@5815 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/include/rcube_config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_config.php b/roundcubemail/program/include/rcube_config.php
index 7eb295015..46906dde1 100644
--- a/roundcubemail/program/include/rcube_config.php
+++ b/roundcubemail/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;