From d3c5911ffce8758d020b301e667869aa2e80ce6a Mon Sep 17 00:00:00 2001 From: Lauris BH Date: Wed, 13 Dec 2017 15:46:56 +0200 Subject: [PATCH] Fix wiki page list not rendering after updatedunix changes (#3175) --- routers/repo/wiki.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/routers/repo/wiki.go b/routers/repo/wiki.go index 7d18a4a49b..8aa9ed8df7 100644 --- a/routers/repo/wiki.go +++ b/routers/repo/wiki.go @@ -9,7 +9,6 @@ import ( "io/ioutil" "path/filepath" "strings" - "time" "code.gitea.io/git" @@ -19,6 +18,7 @@ import ( "code.gitea.io/gitea/modules/context" "code.gitea.io/gitea/modules/markup" "code.gitea.io/gitea/modules/markup/markdown" + "code.gitea.io/gitea/modules/util" ) const ( @@ -45,9 +45,9 @@ func MustEnableWiki(ctx *context.Context) { // PageMeta wiki page meat information type PageMeta struct { - Name string - SubURL string - Updated time.Time + Name string + SubURL string + UpdatedUnix util.TimeStamp } // findEntryForFile finds the tree entry for a target filepath. @@ -266,9 +266,9 @@ func WikiPages(ctx *context.Context) { return } pages = append(pages, PageMeta{ - Name: wikiName, - SubURL: models.WikiNameToSubURL(wikiName), - Updated: c.Author.When, + Name: wikiName, + SubURL: models.WikiNameToSubURL(wikiName), + UpdatedUnix: util.TimeStamp(c.Author.When.Unix()), }) } ctx.Data["Pages"] = pages