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:
authorMorris Jobke <hey@morrisjobke.de>2020-08-20 09:02:01 +0300
committerGitHub <noreply@github.com>2020-08-20 09:02:01 +0300
commit442d174ac3673a7516a1d36bc4e8e874a5ead745 (patch)
tree2f85a39113a9dae1f0a9823f7a347dc94018c53e
parentdb324278b5f147c2e04692aa7fc99beec5b0dbef (diff)
parentc8956e8893b20e428ca35b7169f804dd9959f225 (diff)
Merge pull request #22309 from nextcloud/backport/22221/stable19-2
[stable19] fixing a logged deprecation message
-rw-r--r--apps/user_ldap/appinfo/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/appinfo/app.php b/apps/user_ldap/appinfo/app.php
index c2d61ba61a2..5704fb7f6c8 100644
--- a/apps/user_ldap/appinfo/app.php
+++ b/apps/user_ldap/appinfo/app.php
@@ -56,7 +56,7 @@ if (count($configPrefixes) > 0) {
OC_User::useBackend($userBackend);
// Hook to allow plugins to work on registered backends
- OC::$server->getEventDispatcher()->dispatch('OCA\\User_LDAP\\User\\User::postLDAPBackendAdded');
+ OC::$server->getEventDispatcher()->dispatch('OCA\\User_LDAP\\User\\User::postLDAPBackendAdded', new \OCP\EventDispatcher\Event());
\OC::$server->getGroupManager()->addBackend($groupBackend);