diff options
author | Alberto Bertogli <albertito@blitiri.com.ar> | 2013-11-03 11:57:54 +0100 |
---|---|---|
committer | Alberto Bertogli <albertito@blitiri.com.ar> | 2013-11-03 11:57:54 +0100 |
commit | 2f65291ef15bd4d6a49c38f8809f64184b52a727 (patch) | |
tree | cac7362f20b74afb60a477257e855057eaf2ef8a /views/commit.html | |
parent | f6a75820e812f1ab44545cf01f4c475952df0821 (diff) | |
download | git-arr-fork-2f65291ef15bd4d6a49c38f8809f64184b52a727.zip |
Fix committer field in the commit view0.12
The commit view shows the author information in the committer field; this
patch fixes it by showing the appropriate fields.
Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
Diffstat (limited to 'views/commit.html')
-rw-r--r-- | views/commit.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/commit.html b/views/commit.html index bc3119c..1ddc4d8 100644 --- a/views/commit.html +++ b/views/commit.html @@ -22,10 +22,10 @@ <span class="date" title="{{c.author_date}}"> {{c.author_date.utc}} UTC</span></td></tr> <tr><td>committer</td> - <td><span class="name">{{c.author_name}}</span> - <span class="email"><{{c.author_email}}></span><br/> - <span class="date" title="{{c.author_date}}"> - {{c.author_date.utc}} UTC</span></td></tr> + <td><span class="name">{{c.committer_name}}</span> + <span class="email"><{{c.committer_email}}></span><br/> + <span class="date" title="{{c.committer_date}}"> + {{c.committer_date.utc}} UTC</span></td></tr> % for p in c.parents: <tr><td>parent</td> |