]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-log.c
Change commit-view to expect h parameter, not id
[ps-cgit] / ui-log.c
index 6d5509bd3bce42e795a2c640c47a916e0085a277..9d0ec025ddc50e54bb4017978166da73f8d2881e 100644 (file)
--- 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("</td><td>");
        strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M", time);
        html_txt(buf);
        html("</td><td>");
-       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);
        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("</div>");
 }
        }
        html("</div>");
 }
-