From 5e5619119efc820323e3a1a8a1d3cb42e6abca86 Mon Sep 17 00:00:00 2001 From: toins Date: Tue, 26 Jun 2007 15:43:55 +0000 Subject: [PATCH] removing '-' in isbn to allow amazon content. --- C4/Search.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Search.pm b/C4/Search.pm index 526bc9d2f0..a0735dd58d 100755 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -988,7 +988,8 @@ sub searchResults { $oldbiblio->{itemlostcount} = $itemlost_count; $oldbiblio->{bindingcount} = $itembinding_count; $oldbiblio->{orderedcount} = $ordered_count; - + $oldbiblio->{isbn} =~ s/-//g; # deleting - in isbn to enable amazon content + # FIXME # Ugh ... this is ugly, I'll re-write it better above then delete it # my $norequests = 1; -- 2.39.5