summaryrefslogtreecommitdiffabout
path: root/ui-commit.c
authorLars Hjemli <hjemli@gmail.com>2010-06-19 09:38:46 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2010-06-19 09:38:46 (UTC)
commit9af580d8f6e31ccd68307a728a710c525e4133ab (patch) (unidiff)
tree30b5fb3d0d323423da7ee52ba9a45b36bb557252 /ui-commit.c
parent023d933121ca7352a069f3886caf6fbe958ba27d (diff)
parent581a0c2a5428917d42cbfb2b4673a2d2ebceb7d0 (diff)
downloadcgit-9af580d8f6e31ccd68307a728a710c525e4133ab.zip
cgit-9af580d8f6e31ccd68307a728a710c525e4133ab.tar.gz
cgit-9af580d8f6e31ccd68307a728a710c525e4133ab.tar.bz2
Merge branch 'sn/subject-link'
Diffstat (limited to 'ui-commit.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-commit.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/ui-commit.c b/ui-commit.c
index b5e3c01..41313b9 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -17,6 +17,6 @@ void cgit_print_commit(char *hex)
17 struct commit *commit, *parent; 17 struct commit *commit, *parent;
18 struct commitinfo *info; 18 struct commitinfo *info, *parent_info;
19 struct commit_list *p; 19 struct commit_list *p;
20 unsigned char sha1[20]; 20 unsigned char sha1[20];
21 char *tmp; 21 char *tmp, *tmp2;
22 int parents = 0; 22 int parents = 0;
@@ -84,4 +84,8 @@ void cgit_print_commit(char *hex)
84 "<td colspan='2' class='sha1'>"); 84 "<td colspan='2' class='sha1'>");
85 cgit_commit_link(sha1_to_hex(p->item->object.sha1), NULL, NULL, 85 tmp = tmp2 = sha1_to_hex(p->item->object.sha1);
86 ctx.qry.head, sha1_to_hex(p->item->object.sha1), 0); 86 if (ctx.repo->enable_subject_links) {
87 parent_info = cgit_parse_commit(parent);
88 tmp2 = parent_info->subject;
89 }
90 cgit_commit_link(tmp2, NULL, NULL, ctx.qry.head, tmp, 0);
87 html(" ("); 91 html(" (");