From a6d5a1ab33685284caf82072cb477012744ae52f Mon Sep 17 00:00:00 2001 From: miker Date: Tue, 4 Jan 2011 16:34:50 +0000 Subject: [PATCH] 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/branches/rel_2_0@19107 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm index 2f52bdf7a5..0053f5cb10 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm @@ -1988,7 +1988,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); } -- 2.11.0