diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-20 08:02:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 08:02:01 +0200 |
commit | 442d174ac3673a7516a1d36bc4e8e874a5ead745 (patch) | |
tree | 2f85a39113a9dae1f0a9823f7a347dc94018c53e /apps | |
parent | db324278b5f147c2e04692aa7fc99beec5b0dbef (diff) | |
parent | c8956e8893b20e428ca35b7169f804dd9959f225 (diff) | |
download | nextcloud-server-442d174ac3673a7516a1d36bc4e8e874a5ead745.tar.gz nextcloud-server-442d174ac3673a7516a1d36bc4e8e874a5ead745.zip |
Merge pull request #22309 from nextcloud/backport/22221/stable19-2
[stable19] fixing a logged deprecation message
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/appinfo/app.php | 2 |
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); |