diff options
Diffstat (limited to 'admin/picture_modify.php')
-rw-r--r-- | admin/picture_modify.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/admin/picture_modify.php b/admin/picture_modify.php index 0dd6a237b..052b03330 100644 --- a/admin/picture_modify.php +++ b/admin/picture_modify.php @@ -262,6 +262,18 @@ $template->assign_vars( ) ); +if ($row['has_high'] == 'true') +{ + $template->assign_block_vars( + 'high', + array( + 'FILESIZE' => isset($row['high_filesize']) + ? $row['high_filesize'].' KB' + : l10n('unknown'), + ) + ); +} + // creation date unset($day, $month, $year); |