[Koha-bugs] [Bug 13171] Check box for email is missing for hold notifications in patron messaging preferences.

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Jun 23 09:40:35 CEST 2015


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13171

--- Comment #7 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
Some instructions on how to fix this if you run into it:

Check if there are entries for HOLD in the message_transports table:
select * from message_transports 

If they are missing, run the following update:

INSERT INTO message_transports (message_attribute_id, message_transport_type,
is_digest, letter_module, letter_code)
VALUES 
(4, 'email', 0, 'reserves', 'HOLD'),
(4, 'sms', 0, 'reserves', 'HOLD');

The checkbox should show up again.

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


More information about the Koha-bugs mailing list