From b0796518434b01f6aaefd193e0ca2eac5cb1b41c Mon Sep 17 00:00:00 2001 From: Joshua Ferraro Date: Tue, 18 Dec 2007 16:50:39 -0600 Subject: [PATCH] incorect syntax fix Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- C4/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Search.pm b/C4/Search.pm index b55c71d758..31cd87d5e6 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -885,7 +885,7 @@ sub buildQuery { foreach my $this_limit (@limits) { if ( $this_limit =~ /available/ ) { # available is defined as (items.notloan is NULL) and (items.itemlost > 0 or NULL) (last clause handles NULL values for lost in zebra) - $availability_limit .="( ( allrecords,AlwaysMatches='' not onloan,AlwaysMatches='') and ((lost,st-numeric gt 0) or ( allrecords,AlwaysMatches='' not lost,AlwaysMatches='')) )"; + $availability_limit .="( ( allrecords,AlwaysMatches='' not onloan,AlwaysMatches='') and ((lost,st-numeric ge 0) or ( allrecords,AlwaysMatches='' not lost,AlwaysMatches='')) )"; $limit_cgi .= "&limit=available"; $limit_desc .=""; } -- 2.39.5