-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix "searchUsers" usage in Group_LDAP.php #25318
Conversation
`Access::searchUsers` expects an array as the second parameter, `Group_LDAP.php` called the method with a simple string, resulting in an exception and preventing folders shared with dynamic groups from working. This trivial change fixes the usage in Group_LDAP. Fixes #25163 Signed-off-by: Henning Hoefer <hho@users.noreply.github.com>
/backport to stable21 |
/backport to stable20 |
/backport to stable19 |
@hho thank you for the fix! :) |
Thanks for your first pull request and welcome to the community! Feel free to keep them coming! If you are looking for issues to tackle then have a look at this selection: https://github.com/nextcloud/server/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22 |
The backport to stable21 failed. Please do this backport manually. |
The backport to stable20 failed. Please do this backport manually. |
The backport to stable19 failed. Please do this backport manually. |
@blizzz backports failed :( |
Probably just overwriting the change from the mentioned PR which was merged only few days after this PR here was opened. |
Access::searchUsers
expects an array as the second parameter,Group_LDAP.php
called the method with a simple string, resulting in an exception and preventing folders shared with dynamic groups from working. This trivial change fixes the usage in Group_LDAP.Fixes #25163