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

(-)a/misc/cronjobs/process_message_queue.pl (-2 / +8 lines)
Lines 82-88 if ( C4::Context->config("enable_plugins") ) { Link Here
82
    if (@plugins) {
82
    if (@plugins) {
83
        foreach my $plugin ( @plugins ) {
83
        foreach my $plugin ( @plugins ) {
84
            try {
84
            try {
85
                $plugin->before_send_messages();
85
                $plugin->before_send_messages(
86
                    {
87
                        verbose     => $verbose,
88
                        limit       => $limit,
89
                        type        => $type,
90
                        letter_code => $letter_code,
91
                    }
92
                );
86
            }
93
            }
87
            catch {
94
            catch {
88
                warn "$_";
95
                warn "$_";
89
- 

Return to bug 28474