diff options
author | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:10:25 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:10:25 +0100 |
commit | 93fbe8dccec7b14c024259f83543bde4a95be298 (patch) | |
tree | 883786b47f0246ec6e0fb85b8b72af703cfaa152 /application/views/file | |
parent | c88be04f0ec35304be812d7f5379c4362008b730 (diff) |
feat(PHP8.2): Fix deprecated string interpolation
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file')
-rw-r--r-- | application/views/file/deleted.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/views/file/deleted.php b/application/views/file/deleted.php index 8a5818f2d..741824e58 100644 --- a/application/views/file/deleted.php +++ b/application/views/file/deleted.php @@ -2,7 +2,7 @@ <?php if (!empty($errors)) { echo "<p>"; foreach ($errors as $error) { - echo "${error["id"]}: ${error["reason"]}<br>\n"; + echo "{$error["id"]}: {$error["reason"]}<br>\n"; } echo "</p>"; } ?> |