diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2023-01-19 18:05:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 18:05:44 +0100 |
commit | d42d8b79e0c83f57336b9c135711e33d9c9afa5f (patch) | |
tree | dfabb7b586fb435ab1c88ff5ecc911f5630cb81e /core | |
parent | aded13c61fd99c4dd898afff6a5d4c650d22da33 (diff) | |
parent | 2e66acfab800d85a7afa58a637af92606658bfe4 (diff) | |
download | nextcloud-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.php | 2 |
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(""); |