Skip to content
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/bump nextcloud ocp stable30 #880

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/Command/GroupAdminsToLdap.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* @copyright 2019 Cooperativa EITA (eita.org.br)
*
Expand Down
1 change: 1 addition & 0 deletions lib/LDAPConnect.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* @author Alan Tygel <[email protected]>
* @author Arthur Schiwon <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions lib/LDAPGroupManager.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* @copyright Copyright (c) 2017 EITA Cooperative (eita.org.br)
*
Expand Down
3 changes: 2 additions & 1 deletion lib/LDAPUserManager.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* @copyright Copyright (c) 2017 EITA Cooperative (eita.org.br)
*
Expand Down Expand Up @@ -466,7 +467,7 @@ private function handleSetPassword(string $userDN, string $password, \LDAP\Conne
$entry['userPassword'] = $password;
}

if(ldap_mod_replace($connection, $userDN, $entry)) {
if (ldap_mod_replace($connection, $userDN, $entry)) {
return true;
}

Expand Down
1 change: 1 addition & 0 deletions tests/integration/features/bootstrap/BasicStructure.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
*
* @author Arthur Schiwon <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions tests/integration/features/bootstrap/LDAPContext.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* @copyright Copyright (c) 2017 Arthur Schiwon <[email protected]>
*
Expand Down
Loading