diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2020-08-20 08:16:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 08:16:00 +0200 |
commit | 5e91580111f449764f7aa2cc84a353d64a2643a3 (patch) | |
tree | 0a41421d0fabc668af31161f9a447d1ad58b2c01 | |
parent | 208300865aafab6311b53bdc2cf5c631546c3484 (diff) | |
parent | 5b358e7841b161668c23ed8290e4fc9e99344137 (diff) | |
download | nextcloud-server-5e91580111f449764f7aa2cc84a353d64a2643a3.tar.gz nextcloud-server-5e91580111f449764f7aa2cc84a353d64a2643a3.zip |
Merge pull request #22310 from nextcloud/backport/22221/stable18-2
[stable18] fixing a logged deprecation message #22309
-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 2971bcfc3f8..b25c103e948 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); |