diff options
author | plegall <plg@piwigo.org> | 2010-12-31 14:06:27 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-12-31 14:06:27 +0000 |
commit | d7c3c65cd4d1475ae3bc8875114ffb7e54992b8d (patch) | |
tree | bfbafc06045b393e9609c65c8102c919dab91559 /admin/batch_manager_global.php | |
parent | 108344400b85d1c3d5c8b4674efbfc8daf19cc38 (diff) |
Batch Manager:
* add l0n to the new Batch Manager where is was missing
* change photo "name" to photo "title"
* change the way we display "Select all" and "Select the whole set"
git-svn-id: http://piwigo.org/svn/trunk@8408 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/batch_manager_global.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/batch_manager_global.php b/admin/batch_manager_global.php index c374e888d..1a6f1130a 100644 --- a/admin/batch_manager_global.php +++ b/admin/batch_manager_global.php @@ -191,8 +191,8 @@ DELETE ); } - // name - if ('name' == $action) + // title + if ('title' == $action) { $datas = array(); foreach ($collection as $image_id) @@ -201,7 +201,7 @@ DELETE $datas, array( 'id' => $image_id, - 'name' => $_POST['name'] + 'name' => $_POST['title'] ) ); } |