[Koha-bugs] [Bug 18532] Messaging preferences for auto renewals

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Mar 16 14:59:05 CET 2021


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18532

--- Comment #89 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
Looks like there is one more "7 must be 9" occurrence there:

 39     $dbh->do( q{
 40         insert into borrower_message_transport_preferences
(borrower_message_preference_id, message_transport_type)                        
 41         select  p.borrower_message_preference_id, 'email'
 42         from    borrower_message_preferences p
 43         left join
 44                 borrower_message_transport_preferences t
 45         on      p.borrower_message_preference_id =
t.borrower_message_preference_id
 46         where   p.message_attribute_id = 7
 47                 and t.borrower_message_preference_id is null;
 48     });

I can fix but I am wondering what's the point of this query. Can you explain
please?

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list