diff options
author | Byron Jones <glob@mozilla.com> | 2014-08-26 11:27:24 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-08-26 11:27:36 +0200 |
commit | b08625845958b4cf886c2577529afd091c5f9fac (patch) | |
tree | 5b0301d4e79888c85c3e968c410cbb39c2f3e8d8 | |
parent | 84a7731d1b8da6e2c03581a9910f614b689b33f3 (diff) | |
download | bugzilla-b08625845958b4cf886c2577529afd091c5f9fac.tar.gz bugzilla-b08625845958b4cf886c2577529afd091c5f9fac.tar.xz |
Bug 1058481: git commits should link to commitdiff not commit
-rw-r--r-- | extensions/BMO/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BMO/Extension.pm b/extensions/BMO/Extension.pm index b651caf6b..8cbc8f185 100644 --- a/extensions/BMO/Extension.pm +++ b/extensions/BMO/Extension.pm @@ -490,7 +490,7 @@ sub bug_format_comment { my $repo = html_quote($args->{matches}->[1]); my $text = $args->{matches}->[2]; my $revision = $args->{matches}->[3]; - return qq#$preamble<a href="http://git.mozilla.org/?p=$repo;a=commit;h=$revision">$text</a>#; + return qq#$preamble<a href="http://git.mozilla.org/?p=$repo;a=commitdiff;h=$revision">$text</a>#; } }); |