From 0fbc085f52bb2921f2272b1d5f20372d55ffde48 Mon Sep 17 00:00:00 2001 From: mistic100 Date: Sat, 12 Nov 2011 12:45:19 +0000 Subject: feature:2466 Display high-definition dimensions in picture_modify (file size was already displayed) git-svn-id: http://piwigo.org/svn/trunk@12612 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/picture_modify.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'admin/picture_modify.php') diff --git a/admin/picture_modify.php b/admin/picture_modify.php index fb39a16a6..daf17939f 100644 --- a/admin/picture_modify.php +++ b/admin/picture_modify.php @@ -312,12 +312,10 @@ $template->assign( if ($row['has_high'] == 'true') { - $template->assign( - 'HIGH_FILESIZE', - isset($row['high_filesize']) - ? $row['high_filesize'].' KB' - : l10n('unknown') - ); + $template->assign(array( + 'HIGH_FILESIZE' => isset($row['high_filesize']) ? $row['high_filesize'].' KB' : l10n('unknown'), + 'HIGH_DIMENSIONS' => isset($row['high_width']) ? $row['high_width'].' * '.$row['high_height'] : l10n('unknown'), + )); } // image level options -- cgit v1.2.3