aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Lib/Backend/LegacyBackend.php
diff options
context:
space:
mode:
authorStephan Orbaugh <62374139+sorbaugh@users.noreply.github.com>2025-05-06 13:36:43 +0200
committerGitHub <noreply@github.com>2025-05-06 13:36:43 +0200
commit02de206a03d4b42385e05d86ee0fd22585a414ec (patch)
tree84438c6cfbf6472fb889c559064697d47aade051 /apps/files_external/lib/Lib/Backend/LegacyBackend.php
parent53f71da4735cae0b6294278a84c4ce281f7e127c (diff)
parent2525d4b6ff4317c5ac4780257b7d924159ed163c (diff)
downloadnextcloud-server-stable28.tar.gz
nextcloud-server-stable28.zip
Merge pull request #52647 from nextcloud/backport/52628/stable28stable28
[stable28] fix(files_external): Mark password fields for LoginCredentials and SessionCredentials as hidden and optional
Diffstat (limited to 'apps/files_external/lib/Lib/Backend/LegacyBackend.php')
-rw-r--r--apps/files_external/lib/Lib/Backend/LegacyBackend.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/files_external/lib/Lib/Backend/LegacyBackend.php b/apps/files_external/lib/Lib/Backend/LegacyBackend.php
index 86c21f03434..33e97969ee6 100644
--- a/apps/files_external/lib/Lib/Backend/LegacyBackend.php
+++ b/apps/files_external/lib/Lib/Backend/LegacyBackend.php
@@ -69,10 +69,6 @@ class LegacyBackend extends Backend {
$type = DefinitionParameter::VALUE_PASSWORD;
$placeholder = substr($placeholder, 1);
break;
- case '#':
- $type = DefinitionParameter::VALUE_HIDDEN;
- $placeholder = substr($placeholder, 1);
- break;
}
$this->addParameter((new DefinitionParameter($name, $placeholder))
->setType($type)