aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2023-01-19 18:05:44 +0100
committerGitHub <noreply@github.com>2023-01-19 18:05:44 +0100
commitd42d8b79e0c83f57336b9c135711e33d9c9afa5f (patch)
treedfabb7b586fb435ab1c88ff5ecc911f5630cb81e /core
parentaded13c61fd99c4dd898afff6a5d4c650d22da33 (diff)
parent2e66acfab800d85a7afa58a637af92606658bfe4 (diff)
downloadnextcloud-server-d42d8b79e0c83f57336b9c135711e33d9c9afa5f.tar.gz
nextcloud-server-d42d8b79e0c83f57336b9c135711e33d9c9afa5f.zip
Merge pull request #36162 from nextcloud/fix/php82/string-var-interpolation
fix(PHP8.2): Fix deprecated string interpolation syntax
Diffstat (limited to 'core')
-rw-r--r--core/Command/Maintenance/RepairShareOwnership.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/RepairShareOwnership.php b/core/Command/Maintenance/RepairShareOwnership.php
index 267e0ca1d48..c4d8da7bf74 100644
--- a/core/Command/Maintenance/RepairShareOwnership.php
+++ b/core/Command/Maintenance/RepairShareOwnership.php
@@ -77,7 +77,7 @@ class RepairShareOwnership extends Command {
$output->writeln("Found " . count($shares) . " shares with invalid share owner");
foreach ($shares as $share) {
/** @var array{shareId: int, fileTarget: string, initiator: string, receiver: string, owner: string, mountOwner: string} $share */
- $output->writeln(" - share ${share['shareId']} from \"${share['initiator']}\" to \"${share['receiver']}\" at \"${share['fileTarget']}\", owned by \"${share['owner']}\", that should be owned by \"${share['mountOwner']}\"");
+ $output->writeln(" - share {$share['shareId']} from \"{$share['initiator']}\" to \"{$share['receiver']}\" at \"{$share['fileTarget']}\", owned by \"{$share['owner']}\", that should be owned by \"{$share['mountOwner']}\"");
}
$output->writeln("");