cerrado @ 1e14d4d35d90923a6108be568185a3f0961bdd2e

fix: User author info instead of committer

Make use of the correct information when displaying commit info.
diff --git a/templates/commit.qtpl b/templates/commit.qtpl
index 2b58864d816b225ff35e20c1301046d41b7bfca6..ae26a51bdb76657f64787e6af32195200292c4ed 100644
--- a/templates/commit.qtpl
+++ b/templates/commit.qtpl
@@ -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>
       </div>
       {% endif %}
       <div class="col-md text-md-end">
-       <a title="{%s c.Committer.Email %}" href="mailto:{%s c.Committer.Email %}">{%s c.Committer.Name %}</a>
+       <a title="{%s c.Committer.Email %}" href="mailto:{%s c.Author.Email %}">{%s c.Author.Name %}</a>
       </div>
     </div>
     <div class="code-view">
diff --git a/templates/commit.qtpl.go b/templates/commit.qtpl.go
index 9a25741aebc4e36f555a2c563899ecf9cfed7d1b..fac2e882055fa6c6b9f3356ed0d506185d778eb0 100644
--- a/templates/commit.qtpl.go
+++ b/templates/commit.qtpl.go
@@ -77,11 +77,11 @@ 	qw422016.E().S(c.Committer.Email)
 //line templates/commit.qtpl:15
 	qw422016.N().S(`" href="mailto:`)
 //line templates/commit.qtpl:15
-	qw422016.E().S(c.Committer.Email)
+	qw422016.E().S(c.Author.Email)
 //line templates/commit.qtpl:15
 	qw422016.N().S(`">`)
 //line templates/commit.qtpl:15
-	qw422016.E().S(c.Committer.Name)
+	qw422016.E().S(c.Author.Name)
 //line templates/commit.qtpl:15
 	qw422016.N().S(`</a>
       </div>