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
path: root/apps
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2020-08-11 13:36:16 +0300
committerGitHub <noreply@github.com>2020-08-11 13:36:16 +0300
commit18fabc9d83c55420434f3f9c683ec3b2bfa673bd (patch)
tree04ec941498d2a168cc96cad17f149099e8a30921 /apps
parent883ec2b928ad6498b784ce3fd68b27bdafba17ef (diff)
parentbb90333bfb36d87885e1b104decfcf8cdb226a5b (diff)
Merge pull request #22179 from nextcloud/backport/22176/stable18
[stable18] Remove unexpected argument
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib/Command/ShowConfig.php2
-rw-r--r--apps/user_ldap/lib/Command/ShowRemnants.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Command/ShowConfig.php b/apps/user_ldap/lib/Command/ShowConfig.php
index fd33a0bc0df..6eea9377da2 100644
--- a/apps/user_ldap/lib/Command/ShowConfig.php
+++ b/apps/user_ldap/lib/Command/ShowConfig.php
@@ -106,7 +106,7 @@ class ShowConfig extends Command {
$rows[] = array($key, $value);
}
$table->setRows($rows);
- $table->render($output);
+ $table->render();
}
}
}
diff --git a/apps/user_ldap/lib/Command/ShowRemnants.php b/apps/user_ldap/lib/Command/ShowRemnants.php
index 034168cbd3f..59cd5877ec0 100644
--- a/apps/user_ldap/lib/Command/ShowRemnants.php
+++ b/apps/user_ldap/lib/Command/ShowRemnants.php
@@ -101,7 +101,7 @@ class ShowRemnants extends Command {
$output->writeln(json_encode($rows));
} else {
$table->setRows($rows);
- $table->render($output);
+ $table->render();
}
}
}