Index: openacs-4/packages/news-aggregator/tcl/source-procs-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/news-aggregator/tcl/source-procs-postgresql.xql,v diff -u -r1.7 -r1.8 --- openacs-4/packages/news-aggregator/tcl/source-procs-postgresql.xql 17 Jul 2018 13:28:48 -0000 1.7 +++ openacs-4/packages/news-aggregator/tcl/source-procs-postgresql.xql 17 Jul 2018 15:48:54 -0000 1.8 @@ -4,17 +4,6 @@ postgresql7.2 - - - update na_sources - set last_scanned = now(), - title = :title, - link = :link, - description = :description - where source_id = :source_id - - - where last_scanned < (now() - '00:48:00'::time) @@ -82,20 +71,6 @@ - - - update na_sources - set link = :link, - title = :title, - description = :description, - updates = (updates + 1), - last_scanned = now(), - last_modified = now(), - last_modified_stamp = now() - where source_id = :source_id - - - select na_item__new ( @@ -108,7 +83,7 @@ :description, :content_encoded, :author, - $pub_date_sql + coalesce(:pub_date, current_timestamp) );