diff options
Diffstat (limited to 'ui-refs.c')
| -rw-r--r-- | ui-refs.c | 4 |
1 files changed, 3 insertions, 1 deletions
| @@ -76,7 +76,7 @@ static int print_branch(struct refinfo *ref) | |||
| 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'>"); |
| @@ -189,6 +189,8 @@ void cgit_print_branches(int maxcount) | |||
| 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; |
