From: dbs Date: Wed, 27 Apr 2011 12:24:20 +0000 (+0000) Subject: One more strictly integer check for fleshing feeds in SuperCat X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=0128f9f93fe9ff4fbd7e5953c84a94a5da09ea11;p=evergreen%2Fjoelewis.git One more strictly integer check for fleshing feeds in SuperCat Missed this one in r20336. Argh. Signed-off-by: Dan Scott git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_2_0@20338 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm b/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm index 149a0b4051..e7eb5686ac 100644 --- a/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm +++ b/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm @@ -1466,7 +1466,7 @@ sub create_record_feed { next unless $node; $xml = ''; - if ($lib && ($type eq 'marcxml' || $type eq 'atom') && ($flesh > 0 || $flesh == 'uris')) { + if ($lib && ($type eq 'marcxml' || $type eq 'atom') && ($flesh > 0)) { my $r = $supercat->request( "open-ils.supercat.$search.holdings_xml.retrieve", $rec, $lib, $depth, $flesh_feed, $paging ); while ( !$r->complete ) { $xml .= join('', map {$_->content} $r->recv);