[open-ils-commits] r19106 - trunk/Open-ILS/src/perlmods/OpenILS/Application (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Jan 4 11:34:12 EST 2011


Author: miker
Date: 2011-01-04 11:34:09 -0500 (Tue, 04 Jan 2011)
New Revision: 19106

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm
Log:
Addressing https://bugs.launchpad.net/evergreen/+bug/696078 where deleted/inactive records are included in the freshmeat feed.

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm	2011-01-04 16:33:58 UTC (rev 19105)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm	2011-01-04 16:34:09 UTC (rev 19106)
@@ -2128,7 +2128,7 @@
 
 	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);
 }



More information about the open-ils-commits mailing list