aboutsummaryrefslogtreecommitdiffstats
path: root/ui-commit.c
diff options
context:
space:
mode:
authorlookshe <github@lookshe.org>2016-02-26 10:35:57 +0100
committerlookshe <github@lookshe.org>2016-02-26 10:35:57 +0100
commit1c1f2a00d290598f050cb77ad4c846902a135f5b (patch)
treeeade990c622ab4992f2ab49d6a70ce71e1a4d63e /ui-commit.c
parent335423fb9ded67f3820f34793a7774d9f35d7c09 (diff)
implementation to link FS#[0-9]+ to flyspray (FS#141)
Diffstat (limited to 'ui-commit.c')
-rw-r--r--ui-commit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 0c3d740..d3f7922 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -115,13 +115,13 @@ void cgit_print_commit(char *hex, const char *prefix)
html("</table>\n");
html("<div class='commit-subject'>");
cgit_open_filter(ctx.repo->commit_filter);
- html_txt(info->subject);
+ cgit_check_text_for_issue_link(info->subject);
cgit_close_filter(ctx.repo->commit_filter);
show_commit_decorations(commit);
html("</div>");
html("<div class='commit-msg'>");
cgit_open_filter(ctx.repo->commit_filter);
- html_txt(info->msg);
+ cgit_check_text_for_issue_link(info->msg);
cgit_close_filter(ctx.repo->commit_filter);
html("</div>");
if (notes.len != 0) {