]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1277600 - Custom field "Crash Signature" link is deprecated
authorDylan Hardison <dylan@mozilla.com>
Tue, 7 Jun 2016 20:57:00 +0000 (16:57 -0400)
committerDylan Hardison <dylan@mozilla.com>
Tue, 7 Jun 2016 20:57:00 +0000 (16:57 -0400)
extensions/BMO/template/en/default/hook/bug/edit-custom_field.html.tmpl
extensions/BMO/template/en/default/hook/bug_modal/edit-custom_field-cf_crash_signature.html.tmpl

index d81299004d8dd042d83bb7650cf25aef7f6d9bfb..3e01585ad40e8fb5e2bfac38c4307dd2617883f2 100644 (file)
@@ -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>
index cd826ed8be1990394299d9ef29c84c78a0bfe99c..cdf2c10df86c87fa28f85adf38c7d6d437aec31d 100644 (file)
@@ -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>
           [%