From b7bdd7673157dda3228cc4455a8872af2fb3ec9e Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 25 Mar 2026 16:21:35 -0400 Subject: [PATCH] feat(files_external/s3): rename legacy signature (v2) for clarity Avoid the use of "authentication" here since this is really about signing compatibility, not the source of credentials. Also prefix with "Use" for UI consistency. Signed-off-by: Josh --- apps/files_external/lib/Lib/Backend/AmazonS3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Backend/AmazonS3.php b/apps/files_external/lib/Lib/Backend/AmazonS3.php index 06a1a67d723..82ea7298e09 100644 --- a/apps/files_external/lib/Lib/Backend/AmazonS3.php +++ b/apps/files_external/lib/Lib/Backend/AmazonS3.php @@ -41,7 +41,7 @@ class AmazonS3 extends Backend { ->setDefaultValue(true), (new DefinitionParameter('use_path_style', $l->t('Enable Path Style'))) ->setType(DefinitionParameter::VALUE_BOOLEAN), - (new DefinitionParameter('legacy_auth', $l->t('Legacy (v2) authentication'))) + (new DefinitionParameter('legacy_auth', $l->t('Use Legacy S3 signing (v2)'))) ->setType(DefinitionParameter::VALUE_BOOLEAN), (new DefinitionParameter('useMultipartCopy', $l->t('Enable multipart copy'))) ->setType(DefinitionParameter::VALUE_BOOLEAN)