http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7001
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |m --- Comment #90 from Jonathan Druart <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
