summaryrefslogtreecommitdiffabout
path: root/ui-refs.c
Unidiff
Diffstat (limited to 'ui-refs.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-refs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui-refs.c b/ui-refs.c
index 6571cc4..caddfbc 100644
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -73,13 +73,13 @@ static int print_branch(struct refinfo *ref)
73 html("<tr><td>"); 73 html("<tr><td>");
74 cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0, NULL, NULL, 74 cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0, NULL, NULL,
75 ctx.qry.showmsg); 75 ctx.qry.showmsg);
76 html("</td><td>"); 76 html("</td><td>");
77 77
78 if (ref->object->type == OBJ_COMMIT) { 78 if (ref->object->type == OBJ_COMMIT) {
79 cgit_commit_link(info->subject, NULL, NULL, name, NULL); 79 cgit_commit_link(info->subject, NULL, NULL, name, NULL, NULL, 0);
80 html("</td><td>"); 80 html("</td><td>");
81 html_txt(info->author); 81 html_txt(info->author);
82 html("</td><td colspan='2'>"); 82 html("</td><td colspan='2'>");
83 cgit_print_age(info->commit->date, -1, NULL); 83 cgit_print_age(info->commit->date, -1, NULL);
84 } else { 84 } else {
85 html("</td><td></td><td>"); 85 html("</td><td></td><td>");
@@ -186,12 +186,14 @@ void cgit_print_branches(int maxcount)
186 "<th class='left'>Author</th>" 186 "<th class='left'>Author</th>"
187 "<th class='left' colspan='2'>Age</th></tr>\n"); 187 "<th class='left' colspan='2'>Age</th></tr>\n");
188 188
189 list.refs = NULL; 189 list.refs = NULL;
190 list.alloc = list.count = 0; 190 list.alloc = list.count = 0;
191 for_each_branch_ref(cgit_refs_cb, &list); 191 for_each_branch_ref(cgit_refs_cb, &list);
192 if (ctx.repo->enable_remote_branches)
193 for_each_remote_ref(cgit_refs_cb, &list);
192 194
193 if (maxcount == 0 || maxcount > list.count) 195 if (maxcount == 0 || maxcount > list.count)
194 maxcount = list.count; 196 maxcount = list.count;
195 197
196 if (maxcount < list.count) { 198 if (maxcount < list.count) {
197 qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age); 199 qsort(list.refs, list.count, sizeof(*list.refs), cmp_branch_age);