abouttreesummaryrefslogcommitdiff
path: root/ui-shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 67934df..9f28b20 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -330,7 +330,7 @@ static void reporevlink(const char *page, const char *name, const char *title,
void cgit_summary_link(const char *name, const char *title, const char *class,
const char *head)
{
- reporevlink(NULL, name, title, class, head, NULL, NULL);
+ reporevlink("summary", name, title, class, head, NULL, NULL);
}
void cgit_tag_link(const char *name, const char *title, const char *class,
@@ -342,7 +342,7 @@ void cgit_tag_link(const char *name, const char *title, const char *class,
void cgit_tree_link(const char *name, const char *title, const char *class,
const char *head, const char *rev, const char *path)
{
- reporevlink("tree", name, title, class, head, rev, path);
+ reporevlink(NULL, name, title, class, head, rev, path);
}
void cgit_plain_link(const char *name, const char *title, const char *class,