From a2ddc10479ec463708e422ca5ce7ec02c22a7d02 Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Wed, 16 May 2007 00:26:23 +0200 Subject: Change commit-view to expect h parameter, not id The change makes the commit-page benefit from repo.defbranch. Signed-off-by: Lars Hjemli --- ui-log.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ui-log.c') diff --git a/ui-log.c b/ui-log.c index 6d5509b..9d0ec02 100644 --- a/ui-log.c +++ b/ui-log.c @@ -34,7 +34,7 @@ void print_commit(struct commit *commit) strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M", time); html_txt(buf); html(""); - char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1)); + char *qry = fmt("h=%s", sha1_to_hex(commit->object.sha1)); char *url = cgit_pageurl(cgit_query_repo, "commit", qry); html_link_open(url, NULL, NULL); html_ntxt(cgit_max_msg_len, info->subject); @@ -121,4 +121,3 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path) } html(""); } - -- cgit v1.2.3-59-g8ed1b