6 Apr
2018
6 Apr
'18
5:57 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18725 --- Comment #23 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- I do not understand the trick: 1065 # If this fails the database is unwritable and we won't manage to send a message that continues to be marked 'pending' 1066 $message_object->status('processing'); # enum: same as empty string 1067 return unless $message_object->store(); 1068 $message_object->status('pending')->store; Why not simply: return unless $message_object->status('pending')->store; ? -- You are receiving this mail because: You are watching all bug changes.