From 9a0f685e1416dd668dce7b7b775a3c0df526716d Mon Sep 17 00:00:00 2001 From: Paul Poulain Date: Sun, 19 Apr 2009 01:37:32 +0200 Subject: [PATCH] fir for #2338 When I go to serials/claims.pl, "All Suppliers (2)" is selected in the supplier dropdown list, and no missing issues are listed. When I choose another supplier from that list ("Supplier 1 (2)"), then two missing issues are listed. Should "All Suppliers" instead read "Choose a Supplier" ? chris: I think it might be safe to remove the all suppliers option all together as its doing nothing paul: agreed, this patch removes the All Supplier line, that is useless, confusing & untranslatable Signed-off-by: Galen Charlton --- C4/Serials.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/C4/Serials.pm b/C4/Serials.pm index 9967f0816d..443c3612ae 100644 --- a/C4/Serials.pm +++ b/C4/Serials.pm @@ -106,9 +106,6 @@ sub GetSuppliersWithLateIssues { while ( my ( $id, $name ) = $sth->fetchrow ) { $supplierlist{$id} = $name; } - if ( C4::Context->preference("RoutingSerials") ) { - $supplierlist{''} = "All Suppliers"; - } return %supplierlist; } -- 2.39.5