Merge pull request #8126 from nupplaphil/bug/cmd_storage_list

Fix Storage list
pull/8129/head
Michael Vogel 2020-01-18 10:19:20 +01:00 zatwierdzone przez GitHub
commit 4e83b2930e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -88,7 +88,7 @@ HELP;
$isregisterd = false;
foreach ($this->storageManager->listBackends() as $name => $class) {
$issel = ' ';
if ($current === $class) {
if ($current::getName() == $name) {
$issel = '*';
$isregisterd = true;
};