diff options
Diffstat (limited to 'admin/element_set_global.php')
-rw-r--r-- | admin/element_set_global.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/element_set_global.php b/admin/element_set_global.php index cb55282e2..ad1ff8135 100644 --- a/admin/element_set_global.php +++ b/admin/element_set_global.php @@ -369,7 +369,7 @@ if (count($page['cat_elements_id']) > 0) $template->assign_vars(array('NAV_BAR' => $nav_bar)); $query = ' -SELECT id,path,tn_ext +SELECT id,path,tn_ext,file,filesize FROM '.IMAGES_TABLE.' WHERE id IN ('.implode(',', $page['cat_elements_id']).') '.$conf['order_by'].' @@ -393,8 +393,8 @@ SELECT id,path,tn_ext array( 'ID' => $row['id'], 'SRC' => $src, - 'ALT' => 'TODO', - 'TITLE' => 'TODO' + 'ALT' => $row['file'], + 'TITLE' => get_thumbnail_title($row) ) ); } |