diff options
Diffstat (limited to 'application/service/files.php')
-rw-r--r-- | application/service/files.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/service/files.php b/application/service/files.php index a21b1d65c..576adb2ef 100644 --- a/application/service/files.php +++ b/application/service/files.php @@ -439,14 +439,14 @@ class files { // likely unsupported filetype } - $tooltip = "${filedata["id"]} - $filesize<br>"; + $tooltip = "{$filedata["id"]} - $filesize<br>"; $tooltip .= "$upload_date<br>"; if ($height > 0 && $width > 0) { - $tooltip .= "${width}x${height} - ${filedata["mimetype"]}<br>"; + $tooltip .= "{$width}x{$height} - {$filedata["mimetype"]}<br>"; } else { - $tooltip .= "${filedata["mimetype"]}<br>"; + $tooltip .= "{$filedata["mimetype"]}<br>"; } return $tooltip; |