Index: openacs-4/packages/rss-support/tcl/rss-utilities-procs.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/rss-support/tcl/rss-utilities-procs.xql,v diff -u -N -r1.2 -r1.2.24.1 --- openacs-4/packages/rss-support/tcl/rss-utilities-procs.xql 17 May 2003 11:22:12 -0000 1.2 +++ openacs-4/packages/rss-support/tcl/rss-utilities-procs.xql 31 Aug 2020 14:35:24 -0000 1.2.24.1 @@ -10,9 +10,8 @@ - select node_id from site_nodes + select min(node_id) from site_nodes where object_id = :package_id - order by node_id limit 1 Index: openacs-4/packages/xowiki/tcl/package-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/package-procs.tcl,v diff -u -N -r1.332.2.64 -r1.332.2.65 --- openacs-4/packages/xowiki/tcl/package-procs.tcl 26 Aug 2020 18:35:00 -0000 1.332.2.64 +++ openacs-4/packages/xowiki/tcl/package-procs.tcl 31 Aug 2020 14:35:24 -0000 1.332.2.65 @@ -2428,9 +2428,10 @@ continue } set last_modified [::xo::dc get_value get_newest_modification_date \ - {select last_modified from acs_objects + {select max(last_modified) + from acs_objects where package_id = :package_id - order by last_modified desc limit 1}] + }] set time [::xo::db::tcl_date $last_modified tz] set time "[clock format [clock scan $time] -format {%Y-%m-%dT%T}]${tz}:00"