aboutsummaryrefslogtreecommitdiffstats
path: root/stagit.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <[email protected]>2016-01-05 21:42:34 +0100
committerHiltjo Posthuma <[email protected]>2016-01-05 21:42:34 +0100
commit48a09a0f100008014e1785e38c31e754bd761db4 (patch)
treeb173dbb1b6be6e9c3c323492c43b977933ae6ad0 /stagit.c
parenta6b29cbbd97fbc2b297d55675422d3b2207b5791 (diff)
downloadstagit-48a09a0f100008014e1785e38c31e754bd761db4.tar.gz
stagit-48a09a0f100008014e1785e38c31e754bd761db4.zip
refs: remove link, it may be broken for non-HEAD
Diffstat (limited to '')
-rw-r--r--stagit.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/stagit.c b/stagit.c
index 22b639e..3dd409d 100644
--- a/stagit.c
+++ b/stagit.c
@@ -826,14 +826,12 @@ writebranches(FILE *fp)
printtimeshort(fp, &(ci->author->when));
fputs("</td><td>", fp);
if (ci->summary) {
- fprintf(fp, "<a href=\"%scommit/%s.html\">", relpath, ci->oid);
if ((len = strlen(ci->summary)) > summarylen) {
xmlencode(fp, ci->summary, summarylen - 1);
fputs("…", fp);
} else {
xmlencode(fp, ci->summary, len);
}
- fputs("</a>", fp);
}
fputs("</td><td>", fp);
if (ci->author)