mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
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
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user