http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7001 Jonathan Druart <jonathan.druart@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@biblibre.co | |m --- Comment #90 from Jonathan Druart <jonathan.druart@biblibre.com> --- This patch is in conflict with Bug 5347, It seems, few changements can fix it: In C4::Letters::SendAlerts: Error SQL : DBD::mysql::st execute failed: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 7 at /.../C4/Letters.pm line 329. The query if $type eq 'claimacquisition' become: "SELECT [...] WHERE aqorders.ordernumber IN (;" And I need an error if bookseller have no email (for display): unless (@email) { warn "Bookseller $dataorders->[0]->{booksellerid} without emails"; return; } In my patch, I returned: return {error => "no_email" }; Perharps, it's just simple. I have not retest all cases of my patch. Sorry I didn't tried earlier -- You are receiving this mail because: You are the QA Contact for the bug. You are watching all bug changes.