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:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-10-21 13:50:47 +0300
committerBackportbot <backportbot-noreply@rullzer.com>2019-10-23 19:14:58 +0300
commitc15444dec825fc1614895bce7e0af378ad602ba7 (patch)
treef9374605def50c5f234c0dcd4a298270f3b0693d
parent9f85bc1b28867cbe9ea354269e43b1b7af21d3a7 (diff)
fix call of a protected method by a different class
was due to a backport while relying on not backported changes Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r--apps/user_ldap/lib/Access.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php
index 1044938446e..62be63bc02b 100644
--- a/apps/user_ldap/lib/Access.php
+++ b/apps/user_ldap/lib/Access.php
@@ -635,7 +635,7 @@ class Access extends LDAPUtility {
return false;
}
- protected function mapAndAnnounceIfApplicable(
+ public function mapAndAnnounceIfApplicable(
AbstractMapping $mapper,
string $fdn,
string $name,