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:
authorDaniel Kesselberg <mail@danielkesselberg.de>2020-08-10 23:36:30 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-08-11 10:54:44 +0300
commit8391161fad394dbf88d3029dd3e55d4d5b59a1de (patch)
tree51aedd2254b3f7bec98f5e3f503297208704b098 /apps
parentbf0028fe506f1ae11a451daed8729ae06ef0b8fe (diff)
Remove unexpected argument
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
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 7a24889eb09..b108ac757cd 100644
--- a/apps/user_ldap/lib/Command/ShowConfig.php
+++ b/apps/user_ldap/lib/Command/ShowConfig.php
@@ -105,7 +105,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 6fb207c4e2d..907a3418817 100644
--- a/apps/user_ldap/lib/Command/ShowRemnants.php
+++ b/apps/user_ldap/lib/Command/ShowRemnants.php
@@ -100,7 +100,7 @@ class ShowRemnants extends Command {
$output->writeln(json_encode($rows));
} else {
$table->setRows($rows);
- $table->render($output);
+ $table->render();
}
}
}