[open-ils-commits] r19110 - branches/rel_1_6_2/Open-ILS/src/perlmods/OpenILS/Application (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Jan 4 11:35:34 EST 2011
Author: miker
Date: 2011-01-04 11:35:31 -0500 (Tue, 04 Jan 2011)
New Revision: 19110
Modified:
branches/rel_1_6_2/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: branches/rel_1_6_2/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm
===================================================================
--- branches/rel_1_6_2/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm 2011-01-04 16:35:28 UTC (rev 19109)
+++ branches/rel_1_6_2/Open-ILS/src/perlmods/OpenILS/Application/SuperCat.pm 2011-01-04 16:35:31 UTC (rev 19110)
@@ -1083,7 +1083,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 => { bre => "$axis desc" }, limit => $limit }
)->gather(1);
}
More information about the open-ils-commits
mailing list