diff options
Diffstat (limited to 'admin/include/functions.php')
-rw-r--r-- | admin/include/functions.php | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index 0669c8d6d..59e59e5c2 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -200,21 +200,12 @@ SELECT $files = array(); $files[] = get_element_path($row); - if (!empty($row['tn_ext'])) - { - $files[] = get_thumbnail_path($row); - } - - if (!empty($row['has_high']) and get_boolean($row['has_high'])) - { - $files[] = get_high_path($row); - } - + if (!empty($row['representative_ext'])) { $pi = pathinfo($row['path']); $file_wo_ext = get_filename_wo_extension($pi['basename']); - $files[] = PHPWG_ROOT_PATH.$pi['dirname'].'/pwg_representative/'.$file_wo_ext.'.'.$row['representative_ext']; + $files[] = original_to_representative( $files[0], $row['representative_ext']); } $ok = true; |