Bug 669535 - User pref for "Possible Duplicates"

r=dkl,a=glob


git-svn-id: svn://10.0.0.236/trunk@264961 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org 2013-08-13 18:51:58 +00:00
parent 5ee67aa32c
commit df552b5627
4 changed files with 6 additions and 2 deletions

View File

@ -1 +1 @@
8692 8693

View File

@ -87,6 +87,8 @@ sub SETTINGS {
requestee_cc => { options => ['on', 'off'], default => 'on' }, requestee_cc => { options => ['on', 'off'], default => 'on' },
# 2012-04-30 glob@mozilla.com -- Bug 663747 # 2012-04-30 glob@mozilla.com -- Bug 663747
bugmail_new_prefix => { options => ['on', 'off'], default => 'on' }, bugmail_new_prefix => { options => ['on', 'off'], default => 'on' },
# 2013-07-26 joshi_sunil@in.com -- Bug 669535
possible_duplicates => { options => ['on', 'off'], default => 'on' },
} }
}; };

View File

@ -491,7 +491,8 @@ TUI_hide_default('attachment_text_field');
</td> </td>
</tr> </tr>
[% IF feature_enabled('jsonrpc') AND !cloned_bug_id %] [% IF feature_enabled('jsonrpc') AND !cloned_bug_id
AND user.settings.possible_duplicates.value == 'on' %]
<tr id="possible_duplicates_container" class="bz_default_hidden"> <tr id="possible_duplicates_container" class="bz_default_hidden">
<th>Possible<br>Duplicates:</th> <th>Possible<br>Duplicates:</th>
<td colspan="3"> <td colspan="3">

View File

@ -43,6 +43,7 @@
"text_only" => "Text Only", "text_only" => "Text Only",
"requestee_cc" => "Automatically add me to the CC list of $terms.bugs I am requested to review", "requestee_cc" => "Automatically add me to the CC list of $terms.bugs I am requested to review",
"bugmail_new_prefix" => "Add 'New:' to subject line of email sent when a new $terms.bug is filed", "bugmail_new_prefix" => "Add 'New:' to subject line of email sent when a new $terms.bug is filed",
"possible_duplicates" => "Display possible duplicates when reporting a new $terms.bug",
} }
%] %]