From: miker Date: Tue, 4 Jan 2011 16:34:09 +0000 (+0000) Subject: Addressing https://bugs.launchpad.net/evergreen/+bug/696078 where deleted/inactive... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=382dc48972ce350bdc678348ea218f9e10249b85;p=evergreen%2Fpines.git Addressing https://bugs.launchpad.net/evergreen/+bug/696078 where deleted/inactive records are included in the freshmeat feed. git-svn-id: svn://svn.open-ils.org/ILS/trunk@19106 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm index 5ce3d51b9d..4d64dae483 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm @@ -2128,7 +2128,7 @@ sub recent_changes { return $_storage->request( "open-ils.cstore.direct.$type.record_entry.id_list.atomic", - { $axis => { ">" => $when }, id => { '>' => 0 } }, + { $axis => { ">" => $when }, id => { '>' => 0 }, deleted => 'f', active => 't' }, { order_by => { $hint => "$axis desc" }, limit => $limit } )->gather(1); }