diff options
author | alecpl <alec@alec.pl> | 2010-03-27 16:57:15 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-03-27 16:57:15 +0000 |
commit | c854241cc4f2a32321ec1fe03c49e54a718e4fc7 (patch) | |
tree | 41bbe4817e5e297402f69e01f149d5b9cdafbbc2 /program/include/rcube_imap_generic.php | |
parent | 22d6b5346b8b604f0408a03c09968e869e398dca (diff) |
- change namespace() to getNamespace()
Diffstat (limited to 'program/include/rcube_imap_generic.php')
-rw-r--r-- | program/include/rcube_imap_generic.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_imap_generic.php b/program/include/rcube_imap_generic.php index 4fd49d062..81e296083 100644 --- a/program/include/rcube_imap_generic.php +++ b/program/include/rcube_imap_generic.php @@ -415,7 +415,7 @@ class rcube_imap_generic return $result; } - function namespace() + function getNamespace() { if (isset($this->prefs['rootdir']) && is_string($this->prefs['rootdir'])) { $this->rootdir = $this->prefs['rootdir']; @@ -684,7 +684,7 @@ class rcube_imap_generic if ($this->prefs['force_caps']) { $this->clearCapability(); } - $this->namespace(); + $this->getNamespace(); $this->logged = true; return true; } else { |