X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/e3d3fffdd447cdb4551549faae65bae5353a2cab..03de473354dc8c17a3b23a973b5cc67752ad20cb:/ui-refs.c
diff --git a/ui-refs.c b/ui-refs.c
index d3d71dd..be3572c 100644
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -63,7 +63,7 @@ static int print_branch(struct refinfo *ref)
return 1;
html("
| ");
cgit_log_link(name, NULL, NULL, name, NULL, NULL, 0, NULL, NULL,
- ctx.qry.showmsg);
+ ctx.qry.showmsg, 0);
html(" | ");
if (ref->object->type == OBJ_COMMIT) {
@@ -236,7 +236,7 @@ void cgit_print_tags(int maxcount)
void cgit_print_refs(void)
{
-
+ cgit_print_layout_start();
html("");
if (ctx.qry.path && starts_with(ctx.qry.path, "heads"))
@@ -249,4 +249,5 @@ void cgit_print_refs(void)
cgit_print_tags(0);
}
html(" ");
+ cgit_print_layout_end();
}
|