Ignore:
Timestamp:
Mar 9, 2007, 5:28:49 PM (17 years ago)
Author:
plg
Message:

New: #images.high_filesize was added so that we can sum the filesizes in the
filtered history. #images.high_filesize is filled during metadata
synchronization.

Bug fixed: in getAttribute XML function, when asking "filesize", it was
returning high_filesize. The regex was too simple.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/picture_modify.php

    r1861 r1883  
    263263  );
    264264
     265if ($row['has_high'] == 'true')
     266{
     267  $template->assign_block_vars(
     268    'high',
     269    array(
     270      'FILESIZE' => isset($row['high_filesize'])
     271        ? $row['high_filesize'].' KB'
     272        : l10n('unknown'),
     273      )
     274    );
     275}
     276
    265277// creation date
    266278unset($day, $month, $year);
Note: See TracChangeset for help on using the changeset viewer.