hugolib: Make the RSS feed use the date for the node it represents
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 8 Jun 2017 23:08:37 +0000 (01:08 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 8 Jun 2017 23:10:16 +0000 (01:10 +0200)
Closes #2708

hugolib/site_render.go

index ef95c07f498de94cac610a19484abe64c37e6781..2e56b9d9d23dbcf8e929f4ff67bbe221f0592a6f 100644 (file)
@@ -17,7 +17,6 @@ import (
        "fmt"
        "path"
        "sync"
-       "time"
 
        "github.com/spf13/hugo/helpers"
 
@@ -208,14 +207,6 @@ func (s *Site) renderRSS(p *PageOutput) error {
 
        p.Kind = kindRSS
 
-       // TODO(bep) we zero the date here to get the number of diffs down in
-       // testing. But this should be set back later; the RSS feed should
-       // inherit the publish date from the node it represents.
-       if p.Kind == KindTaxonomy {
-               var zeroDate time.Time
-               p.Date = zeroDate
-       }
-
        limit := s.Cfg.GetInt("rssLimit")
        if limit >= 0 && len(p.Pages) > limit {
                p.Pages = p.Pages[:limit]