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
This commit is contained in:
plegall 2010-12-31 14:06:27 +00:00
commit d7c3c65cd4
5 changed files with 105 additions and 73 deletions

View file

@ -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']
)
);
}