summaryrefslogtreecommitdiffstats
path: root/template/en/default
diff options
context:
space:
mode:
authorDavid Lawrence <dlawrence@mozilla.com>2011-10-18 22:49:20 +0200
committerDavid Lawrence <dlawrence@mozilla.com>2011-10-18 22:49:20 +0200
commite3f3c2566be8ce17b7d854c120e036a91a36fe0f (patch)
tree5f330cf6b7df12976a7ea7b3b1ececcfea550b4d /template/en/default
parent3e42acb389a5d7a7a04cb7768ca3a0ecc2c471ed (diff)
parent1b68b3315e62ca5c0f761f947db9ffadd91c435f (diff)
downloadbugzilla-e3f3c2566be8ce17b7d854c120e036a91a36fe0f.tar.gz
bugzilla-e3f3c2566be8ce17b7d854c120e036a91a36fe0f.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 'template/en/default')
-rw-r--r--template/en/default/email/bugmail.html.tmpl8
-rw-r--r--template/en/default/search/boolean-charts.html.tmpl5
2 files changed, 11 insertions, 2 deletions
diff --git a/template/en/default/email/bugmail.html.tmpl b/template/en/default/email/bugmail.html.tmpl
index f48667e7b..ac4727811 100644
--- a/template/en/default/email/bugmail.html.tmpl
+++ b/template/en/default/email/bugmail.html.tmpl
@@ -96,7 +96,13 @@
[% IF isnew %]
<tr>
<th>[% field_label FILTER html %]</th>
- <td>[% new_value FILTER html %]</td>
+ <td>
+ [% IF change.field_name == "bug_id" %]
+ [% new_value FILTER bug_link(bug, full_url => 1) FILTER none %]
+ [% ELSE %]
+ [% new_value FILTER html %]
+ [% END %]
+ </td>
</tr>
[% ELSE %]
<tr>
diff --git a/template/en/default/search/boolean-charts.html.tmpl b/template/en/default/search/boolean-charts.html.tmpl
index b90f5f1b6..b5ff90908 100644
--- a/template/en/default/search/boolean-charts.html.tmpl
+++ b/template/en/default/search/boolean-charts.html.tmpl
@@ -135,6 +135,7 @@
[% ELSE %]
<select name="f[% cond_num FILTER html %]" title="Field"
id="f[% cond_num FILTER html %]"
+ onchange="fix_query_string(this)"
class="custom_search_form_field">
[% FOREACH field = fields %]
<option value="[% field.name FILTER html %]"
@@ -150,6 +151,7 @@
<input name="v[% cond_num FILTER html %]" title="Value"
class="custom_search_form_field"
+ onchange="fix_query_string(this)"
value="[% condition.v FILTER html %]">
[% END %]
@@ -170,7 +172,8 @@
[% BLOCK any_all_select %]
<div class="any_all_select">
- <select name="[% name FILTER html %]" id="[% name FILTER html %]">
+ <select name="[% name FILTER html %]" id="[% name FILTER html %]"
+ onchange="fix_query_string(this)">
<option value="AND">Match ALL of the following:</option>
<option value="OR" [% ' selected="selected"' IF selected == "OR" %]>
Match ANY of the following:</option>