From c854241cc4f2a32321ec1fe03c49e54a718e4fc7 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 27 Mar 2010 12:57:15 -0400
Subject: [PATCH] - change namespace() to getNamespace()
---
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 4fd49d0..81e2960 100644
--- a/program/include/rcube_imap_generic.php
+++ b/program/include/rcube_imap_generic.php
@@ -415,7 +415,7 @@
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 @@
if ($this->prefs['force_caps']) {
$this->clearCapability();
}
- $this->namespace();
+ $this->getNamespace();
$this->logged = true;
return true;
} else {
--
Gitblit v1.9.1