diff options
author | Lars Hjemli | 2007-05-16 00:26:23 +0200 |
---|---|---|
committer | Lars Hjemli | 2007-05-16 00:26:23 +0200 |
commit | a2ddc10479ec463708e422ca5ce7ec02c22a7d02 (patch) | |
tree | e099ad98a79d61eb6e368a7e7972700f0e65b9ae /ui-log.c | |
parent | b28b105ec172b258ae5d629381a5890697c2f938 (diff) | |
download | cgit-a2ddc10479ec463708e422ca5ce7ec02c22a7d02.tar.gz cgit-a2ddc10479ec463708e422ca5ce7ec02c22a7d02.tar.bz2 cgit-a2ddc10479ec463708e422ca5ce7ec02c22a7d02.zip |
Change commit-view to expect h parameter, not id
The change makes the commit-page benefit from repo.defbranch.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'ui-log.c')
-rw-r--r-- | ui-log.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -34,7 +34,7 @@ void print_commit(struct commit *commit) | |||
34 | strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M", time); | 34 | strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M", time); |
35 | html_txt(buf); | 35 | html_txt(buf); |
36 | html("</td><td>"); | 36 | html("</td><td>"); |
37 | char *qry = fmt("id=%s", sha1_to_hex(commit->object.sha1)); | 37 | char *qry = fmt("h=%s", sha1_to_hex(commit->object.sha1)); |
38 | char *url = cgit_pageurl(cgit_query_repo, "commit", qry); | 38 | char *url = cgit_pageurl(cgit_query_repo, "commit", qry); |
39 | html_link_open(url, NULL, NULL); | 39 | html_link_open(url, NULL, NULL); |
40 | html_ntxt(cgit_max_msg_len, info->subject); | 40 | 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) | |||
121 | } | 121 | } |
122 | html("</div>"); | 122 | html("</div>"); |
123 | } | 123 | } |
124 | |||