Sort by title if dates are the same
authorNate Finch <nate.finch@gmail.com>
Wed, 10 Sep 2014 19:33:49 +0000 (15:33 -0400)
committerspf13 <steve.francia@gmail.com>
Thu, 11 Sep 2014 21:23:01 +0000 (17:23 -0400)
hugolib/taxonomy.go

index c030618302543b24324720e1517c99b48fc18e48..93bd78f681ff2302e11aaa7bb8ad0182d796d9b8 100644 (file)
@@ -166,10 +166,12 @@ func (p WeightedPages) Sort()         { sort.Stable(p) }
 func (p WeightedPages) Count() int    { return len(p) }
 func (p WeightedPages) Less(i, j int) bool {
        if p[i].Weight == p[j].Weight {
-               return p[i].Page.Date.Unix() > p[j].Page.Date.Unix()
-       } else {
-               return p[i].Weight < p[j].Weight
+               if p[i].Page.Date.Equal(p[j].Page.Date) {
+                       return p[i].Page.Title < p[j].Page.Title
+               }
+               return p[i].Page.Date.After(p[i].Page.Date)
        }
+       return p[i].Weight < p[j].Weight
 }
 
 // TODO mimic PagesSorter for WeightedPages