~ubuntu-branches/ubuntu/edgy/bugzilla/edgy

« back to all changes in this revision

Viewing changes to template/en/default/admin/keywords/confirm-delete.html.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Alexis Sukrieh
  • Date: 2005-10-03 16:51:01 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051003165101-38n0y5qofd68vole
Tags: 2.18.4-1
* New upstream minor release
  + Fixed a security issue: It was possible to bypass the "user
    visibility groups" restrictions if user-matching was turned on
    in "substring" mode.
  + Fixed a security issue: config.cgi exposed information to users who
    weren't logged in, even when "requirelogin" was turned on in Bugzilla.
  (closes: #331206)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[%# 1.0@bugzilla.org %]
 
2
[%# The contents of this file are subject to the Mozilla Public
 
3
  # License Version 1.1 (the "License"); you may not use this file
 
4
  # except in compliance with the License. You may obtain a copy of
 
5
  # the License at http://www.mozilla.org/MPL/
 
6
  #
 
7
  # Software distributed under the License is distributed on an "AS
 
8
  # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
  # implied. See the License for the specific language governing
 
10
  # rights and limitations under the License.
 
11
  #
 
12
  # The Original Code is the Bugzilla Bug Tracking System.
 
13
  #
 
14
  # The Initial Developer of the Original Code is Netscape Communications
 
15
  # Corporation. Portions created by Netscape are
 
16
  # Copyright (C) 1998 Netscape Communications Corporation. All
 
17
  # Rights Reserved.
 
18
  #
 
19
  # Contributor(s): Terry Weissman <terry@mozilla.org>
 
20
  #                 Vlad Dascalu <jocuri@softhome.net>
 
21
  #%]
 
22
 
 
23
[%# INTERFACE:
 
24
  # name: string. The name of the keyword.
 
25
  # keyword_id: number. The ID of the keyword.
 
26
  # bug_count: number. The number of bugs with the keyword.
 
27
  #%]
 
28
 
 
29
[% PROCESS global/header.html.tmpl
 
30
  title = "Delete Keyword"
 
31
%]
 
32
 
 
33
<p>
 
34
  [% IF bug_count == 1 %]
 
35
    There is one [% terms.bug %] with this keyword set.
 
36
  [% ELSE %]
 
37
    There are [% bug_count %] [%+terms.bugs %] with
 
38
    this keyword set.
 
39
  [% END %]
 
40
  
 
41
  Are you <b>sure</b> you want to delete
 
42
  the <code>[% name FILTER html %]</code> keyword?
 
43
</p>
 
44
 
 
45
<form method="post" action="editkeywords.cgi">
 
46
  <input type="hidden" name="id" value="[% keyword_id %]">
 
47
  <input type="hidden" name="action" value="delete">
 
48
  <input type="hidden" name="reallydelete" value="1">
 
49
  <input type="submit" value="Yes, really delete the keyword">
 
50
</form>
 
51
 
 
52
<p><a href="editkeywords.cgi">Edit other keywords</a>.</p>
 
53
 
 
54
[% PROCESS global/footer.html.tmpl %]