Changeset 7200
- Timestamp:
- 07/20/07 02:03:13 (1 year ago)
- Files:
-
- plugins/atom_feed_helper/lib/atom_feed_helper.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/atom_feed_helper/lib/atom_feed_helper.rb
r6907 r7200 31 31 @xml.entry do 32 32 @xml.id("tag:#{@view.request.host_with_port},2007:#{record.class}#{record.id}") 33 @xml.published(record.created_at.xmlschema) 33 @xml.published(record.created_at.xmlschema) if record.respond_to?(:created_at) 34 34 @xml.updated(record.updated_at.xmlschema) if record.respond_to?(:updated_at) 35 35