aboutsummaryrefslogtreecommitdiffstats
path: root/admin/batch_manager_unit.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/batch_manager_unit.php')
-rw-r--r--admin/batch_manager_unit.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/admin/batch_manager_unit.php b/admin/batch_manager_unit.php
index 24ef9a47c..11d0d6903 100644
--- a/admin/batch_manager_unit.php
+++ b/admin/batch_manager_unit.php
@@ -259,13 +259,19 @@ SELECT
;';
$tag_selection = get_taglist($query);
+ $legend = render_element_name($row);
+ if ($legend != get_name_from_file($row['file']))
+ {
+ $legend.= ' ('.$row['file'].')';
+ }
+
$template->append(
'elements',
array(
'ID' => $row['id'],
'TN_SRC' => $src,
'FILE_SRC' => $row['path'],
- 'LEGEND' => render_element_name($row),
+ 'LEGEND' => $legend,
'U_EDIT' => get_root_url().'admin.php?page=photo-'.$row['id'],
'NAME' => !empty($row['name'])?$row['name']:'',
'AUTHOR' => !empty($row['author'])?htmlspecialchars($row['author']):'',