summaryrefslogtreecommitdiffstats
path: root/apps/files/lib/Command/Delete.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/lib/Command/Delete.php')
-rw-r--r--apps/files/lib/Command/Delete.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/Command/Delete.php b/apps/files/lib/Command/Delete.php
index c05fa573ab3..da535568702 100644
--- a/apps/files/lib/Command/Delete.php
+++ b/apps/files/lib/Command/Delete.php
@@ -69,7 +69,7 @@ class Delete extends Command {
if (!$inputIsId && $storage->instanceOfStorage(SharedStorage::class) && $node->getInternalPath() === '') {
/** @var SharedStorage $storage */
[,$user] = explode('/', $fileInput, 3);
- $question = new ConfirmationQuestion("<info>$fileInput</info> in a shared file, do you want to unshare the file <info>$user</info> instead of deleting the source file? [Y/n] ", true);
+ $question = new ConfirmationQuestion("<info>$fileInput</info> in a shared file, do you want to unshare the file from <info>$user</info> instead of deleting the source file? [Y/n] ", true);
if ($helper->ask($input, $output, $question)) {
$storage->unshareStorage();
return 0;