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. git-svn-id: http://piwigo.org/svn/trunk@1883 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
81030a7ab4
commit
b0478ef330
13 changed files with 326 additions and 36 deletions
|
|
@ -714,6 +714,9 @@ function pwg_scan_file($file_full, &$line)
|
|||
if (pwg_get_high($file_dir, $file_base))
|
||||
{
|
||||
$element['has_high'] = 'true';
|
||||
|
||||
$high_file = $file_dir.'/'.$conf['high'].'/'.$file_base;
|
||||
$element['high_filesize'] = floor(filesize($high_file) / 1024);
|
||||
}
|
||||
|
||||
// get EXIF meta datas
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue