Browse Source
Merge pull request #10161 from nextcloud/bugfix/10158/correctly-handle-users-with-numeric-user-ids
Correctly handle users with numeric user ids
pull/9926/merge
Morris Jobke
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
core/Command/Base.php
|
|
|
@ -23,6 +23,7 @@ |
|
|
|
|
|
|
|
namespace OC\Core\Command; |
|
|
|
|
|
|
|
use OC\Core\Command\User\ListCommand; |
|
|
|
use Stecman\Component\Symfony\Console\BashCompletion\Completion\CompletionAwareInterface; |
|
|
|
use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext; |
|
|
|
use Symfony\Component\Console\Command\Command; |
|
|
|
@ -76,7 +77,7 @@ class Base extends Command implements CompletionAwareInterface { |
|
|
|
$this->writeArrayInOutputFormat($input, $output, $item, ' ' . $prefix); |
|
|
|
continue; |
|
|
|
} |
|
|
|
if (!is_int($key)) { |
|
|
|
if (!is_int($key) || ListCommand::class === get_class($this)) { |
|
|
|
$value = $this->valueToString($item); |
|
|
|
if (!is_null($value)) { |
|
|
|
$output->writeln($prefix . $key . ': ' . $value); |
|
|
|
|