View | Details | Raw Unified | Return to bug 29392
Collapse All | Expand All

(-)a/authorities/merge.pl (-5 / +7 lines)
Lines 79-89 if ($op eq 'cud-merge') { Link Here
79
    Koha::Plugins->call(
79
    Koha::Plugins->call(
80
        'before_authority_action',
80
        'before_authority_action',
81
        {
81
        {
82
            action               => 'merge',
82
            action  => 'merge',
83
            authority            => $authority,
83
            payload => {
84
            authority_id         => $recordid1,
84
                authority            => $authority,
85
            record               => $record,
85
                authority_id         => $recordid1,
86
            merged_authority_ids => [$recordid2],
86
                record               => $record,
87
                merged_authority_ids => [$recordid2],
88
            }
87
        }
89
        }
88
    );
90
    );
89
91
(-)a/cataloguing/merge.pl (-6 / +7 lines)
Lines 72-82 if ($op eq 'cud-merge') { Link Here
72
    Koha::Plugins->call(
72
    Koha::Plugins->call(
73
        'before_biblio_action',
73
        'before_biblio_action',
74
        {
74
        {
75
            action            => 'merge',
75
            action  => 'merge',
76
            biblio            => $biblio,
76
            payload => {
77
            biblio_id         => $ref_biblionumber,
77
                biblio            => $biblio,
78
            record            => $record,
78
                biblio_id         => $ref_biblionumber,
79
            merged_biblio_ids => \@biblionumbers
79
                record            => $record,
80
                merged_biblio_ids => \@biblionumbers
81
            }
80
        }
82
        }
81
    );
83
    );
82
84
83
- 

Return to bug 29392