mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-29 20:59:59 +03:00
Issue #1193 : Tag Manager Redesign
* Add a select dropdown to chose how many tag is displayed per page * Add a message beside selection's buttons to apply selection to all tags * Bug and design fixes
This commit is contained in:
parent
d76747f06a
commit
16b6c399e8
4 changed files with 227 additions and 66 deletions
|
@ -401,7 +401,7 @@ SELECT image_id
|
|||
'tag_id' => $destination_tag_id,
|
||||
'image_id' => $image_id
|
||||
);
|
||||
pwg_activity('image', $image_id, 'edit', array("add-tag" => $destination_tag_id));
|
||||
pwg_activity('photo', $image_id, 'edit', array("add-tag" => $destination_tag_id));
|
||||
}
|
||||
|
||||
if (count($inserts) > 0)
|
||||
|
@ -488,7 +488,7 @@ SELECT image_id
|
|||
pwg_activity('tag', $params['destination_tag_id'], 'edit');
|
||||
foreach ($image_to_add as $image_id)
|
||||
{
|
||||
pwg_activity('image', $image_id, 'edit', array("tag-add" => $params['destination_tag_id']));
|
||||
pwg_activity('photo', $image_id, 'edit', array("tag-add" => $params['destination_tag_id']));
|
||||
}
|
||||
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue