http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10366 Srdjan Jankovic <srdjan@catalyst.net.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |srdjan@catalyst.net.nz --- Comment #2 from Srdjan Jankovic <srdjan@catalyst.net.nz> --- @invoices should be checked only if AcqWarnOnDuplicateInvoice is set, otherwise it is an unnecessary db read. Can you please amend to something like my $duplicate_invoices; if ( C4::Context->preference('AcqWarnOnDuplicateInvoice') ) { if ( GetInvoices(...) ) { $duplicate_invoices = 1; } } if ($duplicate_invoices) { ... } else { $op = 'confirm'; } -- You are receiving this mail because: You are watching all bug changes.