summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorDylan Hardison <dylan@mozilla.com>2016-06-07 22:57:00 +0200
committerDylan Hardison <dylan@mozilla.com>2016-06-07 22:57:00 +0200
commit5af5f0a5178c9c4800dc924bdb31e84161053bea (patch)
treea80f5911aa95b3f1f7ff974fd530d91fbb08908b /extensions
parent13161f4ec66ae6174b553ece906bec31b5b5cff9 (diff)
downloadbugzilla-5af5f0a5178c9c4800dc924bdb31e84161053bea.tar.gz
bugzilla-5af5f0a5178c9c4800dc924bdb31e84161053bea.tar.xz
Bug 1277600 - Custom field "Crash Signature" link is deprecated
Diffstat (limited to 'extensions')
-rw-r--r--extensions/BMO/template/en/default/hook/bug/edit-custom_field.html.tmpl2
-rw-r--r--extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl2
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/BMO/template/en/default/hook/bug/edit-custom_field.html.tmpl b/extensions/BMO/template/en/default/hook/bug/edit-custom_field.html.tmpl
index d81299004..3e01585ad 100644
--- a/extensions/BMO/template/en/default/hook/bug/edit-custom_field.html.tmpl
+++ b/extensions/BMO/template/en/default/hook/bug/edit-custom_field.html.tmpl
@@ -30,7 +30,7 @@
[% FOREACH sig = split_cf_crash_signature %]
[% IF sig.match('^\[\@\s*') && sig.match('\s*\]$') %]
[% sig = sig.replace('(^\[\@\s*|\s*\]$)', '') %]
- <a href="https://crash-stats.mozilla.com/report/list?signature=[% sig FILTER uri %]"
+ <a href="https://crash-stats.mozilla.com/signature/?signature=[% sig FILTER uri %]"
target="_blank">[@ [% sig FILTER html %] ]</a><br>
[% ELSE %]
[% sig FILTER html %]<br>
diff --git a/extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl b/extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl
index cd826ed8b..cdf2c10df 100644
--- a/extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl
+++ b/extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl
@@ -20,7 +20,7 @@
IF sig.match('^\[\@\s*') && sig.match('\s*\]$');
sig = sig.replace('(^\[\@\s*|\s*\]$)', '');
%]
- <a href="https://crash-stats.mozilla.com/report/list?signature=[% sig FILTER uri %]" target="_blank">
+ <a href="https://crash-stats.mozilla.com/signature/?signature=[% sig FILTER uri %]" target="_blank">
[@ [% sig FILTER html %] ]
</a>
[%