Skip to content
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
Remove unexpected argument
Signed-off-by: Daniel Kesselberg <[email protected]>
  • Loading branch information
kesselb authored and backportbot[bot] committed Aug 11, 2020
commit bb90333bfb36d87885e1b104decfcf8cdb226a5b
2 changes: 1 addition & 1 deletion apps/user_ldap/lib/Command/ShowConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ protected function renderConfigs($configIDs, $output, $withPassword) {
$rows[] = array($key, $value);
}
$table->setRows($rows);
$table->render($output);
$table->render();
}
}
}
2 changes: 1 addition & 1 deletion apps/user_ldap/lib/Command/ShowRemnants.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
$output->writeln(json_encode($rows));
} else {
$table->setRows($rows);
$table->render($output);
$table->render();
}
}
}