diff options
author | mistic100 <mistic@piwigo.org> | 2011-10-17 18:59:07 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-10-17 18:59:07 +0000 |
commit | 59e744f37926fcf0ec985a2e97bc9115347b0280 (patch) | |
tree | fef5c1deff78a915c718d4e0e50fc5ad3e8b68bb /admin/batch_manager_global.php | |
parent | ad2f001097a8b80f9a7dd5c6e293ef6e7fe05b43 (diff) |
feature:2471 [Batch Manager] "zoom" and "edit" links over each thumbnail
git-svn-id: http://piwigo.org/svn/trunk@12474 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/batch_manager_global.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/admin/batch_manager_global.php b/admin/batch_manager_global.php index fe050a8ee..ce1b2f745 100644 --- a/admin/batch_manager_global.php +++ b/admin/batch_manager_global.php @@ -768,7 +768,11 @@ SELECT id,path,tn_ext,file,filesize,level,name 'TN_SRC' => $src, 'FILE' => $row['file'], 'TITLE' => $title, - 'LEVEL' => $row['level'] + 'LEVEL' => $row['level'], + 'FILE_SRC' => $row['path'], + 'U_EDIT' => + PHPWG_ROOT_PATH.'admin.php?page=picture_modify'. + '&image_id='.$row['id'], ) ); } |