Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2014-04-10 20:07:15 +0400
committerBart Visscher <bartv@thisnet.nl>2014-04-10 20:07:15 +0400
commit694244f2e0ea138049869072de496e5f1210a3a7 (patch)
tree0f86d8c9129803ae0f8391393781cc3b70f20c31 /lib/private/contactsmanager.php
parent5c412f480cb885516a3bdd22f9b9e5f49394eec4 (diff)
Supply the contactsmanager object to the callbacks
Diffstat (limited to 'lib/private/contactsmanager.php')
-rw-r--r--lib/private/contactsmanager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php
index 02338453bec..fb2981f8e31 100644
--- a/lib/private/contactsmanager.php
+++ b/lib/private/contactsmanager.php
@@ -172,7 +172,7 @@ namespace OC {
protected function loadAddressBooks()
{
foreach($this->address_book_loaders as $callable) {
- $callable();
+ $callable($this);
}
$this->address_book_loaders = array();
}