Commit d33c399b authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 1076155: Remove "?" from table columns and labels + code cleanup

r=dkl a=justdave
parent a9efeb74
...@@ -29,7 +29,7 @@ here.</p> ...@@ -29,7 +29,7 @@ here.</p>
<th>API key</th> <th>API key</th>
<th>Description (optional)</th> <th>Description (optional)</th>
<th>Last used</th> <th>Last used</th>
<th>Revoked?</th> <th>Revoked</th>
</tr> </tr>
[% FOREACH api_key IN api_keys %] [% FOREACH api_key IN api_keys %]
......
...@@ -173,17 +173,14 @@ ...@@ -173,17 +173,14 @@
[% END %] [% END %]
<td> <td>
[% IF type.is_multiplicable && edit_multiple_bugs %] [% IF type.is_multiplicable && edit_multiple_bugs %]
<input type="checkbox" <input type="checkbox" name="flags_add-[% type.id %]"
name="flags_add-[% type.id %]" id="flags_add-[% type.id %]" value="1">
id="flags_add-[% type.id %]"> <label for="flags_add-[% type.id %]"
<label for="flags_add-[% type.id %]"> title="If ticked, always create a new flag. Leaving it unchecked will update existing flag(s) and add a new flag if it does not exist">
<a class="field_help_link" Always add
title="If ticked, always create a new flag. Leaving it unchecked will update existing flag(s) and add a new flag if it does not exist">
Always add?
</a>
</label> </label>
[% END %] [% END %]
<td> </td>
</tr> </tr>
</tbody> </tbody>
[% END %] [% END %]
...@@ -526,8 +526,8 @@ sub SaveApiKey { ...@@ -526,8 +526,8 @@ sub SaveApiKey {
# Update any existing keys # Update any existing keys
my $api_keys = Bugzilla::User::APIKey->match({ user_id => $user->id }); my $api_keys = Bugzilla::User::APIKey->match({ user_id => $user->id });
foreach my $api_key (@$api_keys) { foreach my $api_key (@$api_keys) {
my $description = $cgi->param('description_'.$api_key->id); my $description = $cgi->param('description_' . $api_key->id);
my $revoked = $cgi->param('revoked_'.$api_key->id); my $revoked = $cgi->param('revoked_' . $api_key->id);
if ($description ne $api_key->description if ($description ne $api_key->description
|| $revoked != $api_key->revoked) || $revoked != $api_key->revoked)
...@@ -540,25 +540,19 @@ sub SaveApiKey { ...@@ -540,25 +540,19 @@ sub SaveApiKey {
} }
} }
# Was a new api key requested # Create a new API key if requested.
if ($cgi->param('new_key')) { if ($cgi->param('new_key')) {
my $new_key = Bugzilla::User::APIKey->create({ $vars->{new_key} = Bugzilla::User::APIKey->create({
user_id => $user->id, user_id => $user->id,
description => $cgi->param('new_description'), description => $cgi->param('new_description'),
}); });
# As a security precaution, we always sent out an e-mail when # As a security precaution, we always sent out an e-mail when
# an API key is created # an API key is created
my $lang = $user->setting('lang') my $template = Bugzilla->template_inner($user->setting('lang'));
// Bugzilla::User->new()->setting('lang');
my $template = Bugzilla->template_inner($lang);
my $message; my $message;
$template->process( $template->process('email/new-api-key.txt.tmpl', $vars, \$message)
'email/new-api-key.txt.tmpl', || ThrowTemplateError($template->error());
{ user => $user, new_key => $new_key },
\$message
) || ThrowTemplateError($template->error());
MessageToMTA($message); MessageToMTA($message);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment