fixes #2490 add merge_tags notification trigger

A trigger_notify call for 'merge_tags' was added before deleting tags in the tag merge process. This allows plugins or extensions to react to tag merges.
This commit is contained in:
Linty
2025-12-22 16:22:14 +01:00
parent 2526d4a911
commit 91088bbec9
2 changed files with 7 additions and 0 deletions

View File

@@ -101,6 +101,12 @@ array(
'vars' => array('array', 'tag_ids'),
'files' => array('admin\include\functions.inc.php (delete_tags)')
),
array(
'name' => 'merge_tags',
'type' => 'trigger_notify',
'vars' => array('array', 'destination_tag_id', 'array', 'merge_tag'),
'files' => array('admin\include\ws_functions/pwg.tags.php (merge_tags)')
),
array(
'name' => 'delete_user',
'type' => 'trigger_notify',