]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1076155: Remove "?" from table columns and labels + code cleanup
authorFrédéric Buclin <LpSolit@gmail.com>
Thu, 2 Oct 2014 17:09:30 +0000 (19:09 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Thu, 2 Oct 2014 17:09:30 +0000 (19:09 +0200)
r=dkl a=justdave

template/en/default/account/prefs/apikey.html.tmpl
template/en/default/flag/list.html.tmpl
userprefs.cgi

index 970258e50c19e51ea05df32328b502801dce87f3..bed3f380980eb3deb8bd97055b4d7cbd3ec38b99 100644 (file)
@@ -29,7 +29,7 @@ here.</p>
     <th>API key</th>
     <th>Description (optional)</th>
     <th>Last used</th>
-    <th>Revoked?</th>
+    <th>Revoked</th>
   </tr>
 
   [% FOREACH api_key IN api_keys %]
index 455238cfc8931fe276be80e1a62b4086ad2d848e..7547e5687c5c1142a5aad4e0463da880ccad91b5 100644 (file)
       [% END %]
       <td>
         [% IF type.is_multiplicable && edit_multiple_bugs %]
-          <input type="checkbox"
-                 name="flags_add-[% type.id %]"
-                 id="flags_add-[% type.id %]">
-          <label for="flags_add-[% type.id %]">
-            <a class="field_help_link"
-               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>
+          <input type="checkbox" name="flags_add-[% type.id %]"
+                 id="flags_add-[% type.id %]" value="1">
+          <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">
+            Always add
           </label>
         [% END %]
-      <td>
+      </td>
     </tr>
   </tbody>
 [% END %]
index bb57b56b357fc7a96635a2234bef0fca5e429222..ad5fb7d192665743c51059845a783eefdfeff815 100755 (executable)
@@ -526,8 +526,8 @@ sub SaveApiKey {
     # Update any existing keys
     my $api_keys = Bugzilla::User::APIKey->match({ user_id => $user->id });
     foreach my $api_key (@$api_keys) {
-        my $description = $cgi->param('description_'.$api_key->id);
-        my $revoked = $cgi->param('revoked_'.$api_key->id);
+        my $description = $cgi->param('description_' . $api_key->id);
+        my $revoked = $cgi->param('revoked_' . $api_key->id);
 
         if ($description ne $api_key->description
             || $revoked != $api_key->revoked)
@@ -540,25 +540,19 @@ sub SaveApiKey {
         }
     }
 
-    # Was a new api key requested
+    # Create a new API key if requested.
     if ($cgi->param('new_key')) {
-        my $new_key = Bugzilla::User::APIKey->create({
+        $vars->{new_key} = Bugzilla::User::APIKey->create({
             user_id     => $user->id,
             description => $cgi->param('new_description'),
         });
 
         # As a security precaution, we always sent out an e-mail when
         # an API key is created
-        my $lang = $user->setting('lang')
-            // Bugzilla::User->new()->setting('lang');
-
-        my $template = Bugzilla->template_inner($lang);
+        my $template = Bugzilla->template_inner($user->setting('lang'));
         my $message;
-        $template->process(
-            'email/new-api-key.txt.tmpl',
-            { user => $user, new_key => $new_key },
-            \$message
-        ) || ThrowTemplateError($template->error());
+        $template->process('email/new-api-key.txt.tmpl', $vars, \$message)
+          || ThrowTemplateError($template->error());
 
         MessageToMTA($message);
     }