cerrado @ 1e14d4d35d90923a6108be568185a3f0961bdd2e

fix: User author info instead of committer

Make use of the correct information when displaying commit info.
 1diff --git a/templates/commit.qtpl b/templates/commit.qtpl
 2index 2b58864d816b225ff35e20c1301046d41b7bfca6..ae26a51bdb76657f64787e6af32195200292c4ed 100644
 3--- a/templates/commit.qtpl
 4+++ b/templates/commit.qtpl
 5@@ -12,7 +12,7 @@        <a title="tar.gz for {%s c.Hash.String() %}" href="/{%s name %}/archive/{%s c.Hash.String() %}.tar.gz">tar.gz</a>
 6       </div>
 7       {% endif %}
 8       <div class="col-md text-md-end">
 9-       <a title="{%s c.Committer.Email %}" href="mailto:{%s c.Committer.Email %}">{%s c.Committer.Name %}</a>
10+       <a title="{%s c.Committer.Email %}" href="mailto:{%s c.Author.Email %}">{%s c.Author.Name %}</a>
11       </div>
12     </div>
13     <div class="code-view">
14diff --git a/templates/commit.qtpl.go b/templates/commit.qtpl.go
15index 9a25741aebc4e36f555a2c563899ecf9cfed7d1b..fac2e882055fa6c6b9f3356ed0d506185d778eb0 100644
16--- a/templates/commit.qtpl.go
17+++ b/templates/commit.qtpl.go
18@@ -77,11 +77,11 @@ 	qw422016.E().S(c.Committer.Email)
19 //line templates/commit.qtpl:15
20 	qw422016.N().S(`" href="mailto:`)
21 //line templates/commit.qtpl:15
22-	qw422016.E().S(c.Committer.Email)
23+	qw422016.E().S(c.Author.Email)
24 //line templates/commit.qtpl:15
25 	qw422016.N().S(`">`)
26 //line templates/commit.qtpl:15
27-	qw422016.E().S(c.Committer.Name)
28+	qw422016.E().S(c.Author.Name)
29 //line templates/commit.qtpl:15
30 	qw422016.N().S(`</a>
31       </div>