Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
dd832b27
Commit
dd832b27
authored
Sep 29, 2011
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 686786: Decreasing votestoconfirm in editproducts.cgi crashes Bugzilla
r/a=mkanat
parent
36478e4e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
17 deletions
+19
-17
Object.pm
Bugzilla/Object.pm
+2
-0
Product.pm
Bugzilla/Product.pm
+2
-2
Extension.pm
extensions/Voting/Extension.pm
+4
-4
updated-changes.html.tmpl
.../en/default/hook/admin/products/updated-changes.html.tmpl
+7
-7
updated.html.tmpl
.../en/default/admin/products/groupcontrol/updated.html.tmpl
+4
-4
No files found.
Bugzilla/Object.pm
View file @
dd832b27
...
...
@@ -441,6 +441,8 @@ sub audit_log {
# During update, it's the actual %changes hash produced by update().
foreach
my
$field
(
keys
%
$changes
)
{
# Skip private changes.
next
if
$field
=~
/^_/
;
my
(
$from
,
$to
)
=
@
{
$changes
->
{
$field
}
};
$sth
->
execute
(
$user_id
,
$class
,
$self
->
id
,
$field
,
$from
,
$to
);
}
...
...
Bugzilla/Product.pm
View file @
dd832b27
...
...
@@ -223,7 +223,7 @@ sub update {
$new_setting
->
{
group
}
->
name
,
Bugzilla
->
user
->
id
,
$timestamp
);
}
push
(
@
{
$changes
->
{
'group_controls'
}
->
{
'now_mandatory'
}},
push
(
@
{
$changes
->
{
'
_
group_controls'
}
->
{
'now_mandatory'
}},
{
name
=>
$new_setting
->
{
group
}
->
name
,
bug_count
=>
scalar
@$bug_ids
});
}
...
...
@@ -248,7 +248,7 @@ sub update {
$old_setting
->
{
group
}
->
name
,
''
,
Bugzilla
->
user
->
id
,
$timestamp
);
}
push
(
@
{
$changes
->
{
'group_controls'
}
->
{
'now_na'
}},
push
(
@
{
$changes
->
{
'
_
group_controls'
}
->
{
'now_na'
}},
{
name
=>
$old_setting
->
{
group
}
->
name
,
bug_count
=>
scalar
@$bug_ids
});
}
...
...
extensions/Voting/Extension.pm
View file @
dd832b27
...
...
@@ -678,7 +678,7 @@ sub _modify_bug_votes {
}
}
$changes
->
{
'too_many_votes'
}
=
\
@toomanyvotes_list
;
$changes
->
{
'
_
too_many_votes'
}
=
\
@toomanyvotes_list
;
# 2. too many total votes for a single user.
# This part doesn't work in the general case because _remove_votes
...
...
@@ -725,7 +725,7 @@ sub _modify_bug_votes {
}
}
$changes
->
{
'too_many_total_votes'
}
=
\
@toomanytotalvotes_list
;
$changes
->
{
'
_
too_many_total_votes'
}
=
\
@toomanytotalvotes_list
;
# 3. enough votes to confirm
my
$bug_list
=
$dbh
->
selectcol_arrayref
(
...
...
@@ -738,7 +738,7 @@ sub _modify_bug_votes {
my
$confirmed
=
_confirm_if_vote_confirmed
(
$bug_id
);
push
(
@updated_bugs
,
$bug_id
)
if
$confirmed
;
}
$changes
->
{
'confirmed_bugs'
}
=
\
@updated_bugs
;
$changes
->
{
'
_
confirmed_bugs'
}
=
\
@updated_bugs
;
# Now that changes are done, we can send emails to voters.
foreach
my
$msg
(
@msgs
)
{
...
...
@@ -748,7 +748,7 @@ sub _modify_bug_votes {
foreach
my
$bug_id
(
@updated_bugs
)
{
my
$sent_bugmail
=
Bugzilla::BugMail::
Send
(
$bug_id
,
{
changer
=>
Bugzilla
->
user
});
$changes
->
{
'confirmed_bugs_sent_bugmail'
}
->
{
$bug_id
}
=
$sent_bugmail
;
$changes
->
{
'
_
confirmed_bugs_sent_bugmail'
}
->
{
$bug_id
}
=
$sent_bugmail
;
}
}
...
...
extensions/Voting/template/en/default/hook/admin/products/updated-changes.html.tmpl
View file @
dd832b27
...
...
@@ -56,8 +56,8 @@
<p>Checking existing votes in this product for anybody who now
has too many votes for [% terms.abug %]...<br>
[% IF changes.too_many_votes.size %]
[% FOREACH detail = changes.too_many_votes %]
[% IF changes.
_
too_many_votes.size %]
[% FOREACH detail = changes.
_
too_many_votes %]
→removed votes for [% terms.bug %] <a href="show_bug.cgi?id=
[%- detail.id FILTER uri %]">
[%- detail.id FILTER html %]</a> from [% detail.name FILTER html %]<br>
...
...
@@ -69,8 +69,8 @@
<p>Checking existing votes in this product for anybody
who now has too many total votes...<br>
[% IF changes.too_many_total_votes.size %]
[% FOREACH detail = changes.too_many_total_votes %]
[% IF changes.
_
too_many_total_votes.size %]
[% FOREACH detail = changes.
_
too_many_total_votes %]
→removed votes for [% terms.bug %] <a href="show_bug.cgi?id=
[%- detail.id FILTER uri %]">
[%- detail.id FILTER html %]</a> from [% detail.name FILTER html %]<br>
...
...
@@ -82,15 +82,15 @@
<p>Checking unconfirmed [% terms.bugs %] in this product for any which now have
sufficient votes...<br>
[% IF changes.confirmed_bugs.size %]
[% FOREACH id = changes.confirmed_bugs %]
[% IF changes.
_
confirmed_bugs.size %]
[% FOREACH id = changes.
_
confirmed_bugs %]
[%# This is INCLUDED instead of PROCESSED to avoid variables getting
overwritten, which happens otherwise %]
[% INCLUDE bug/process/results.html.tmpl
type = 'votes'
header_done = 1
sent_bugmail = changes.confirmed_bugs_sent_bugmail.$id
sent_bugmail = changes.
_
confirmed_bugs_sent_bugmail.$id
id = id
%]
[% END %]
...
...
template/en/default/admin/products/groupcontrol/updated.html.tmpl
View file @
dd832b27
...
...
@@ -27,16 +27,16 @@
title = title
%]
<p>
[% IF changes.group_controls.now_na.size %]
[% FOREACH g = changes.group_controls.now_na %]
[% IF changes.
_
group_controls.now_na.size %]
[% FOREACH g = changes.
_
group_controls.now_na %]
Removing [% terms.bugs %] from group '[% g.name FILTER html %]' which
no longer applies to this product<p>
[% g.bug_count FILTER html %] [%+ terms.bugs %] removed<p>
[% END %]
[% END %]
[% IF changes.group_controls.now_mandatory.size %]
[% FOREACH g = changes.group_controls.now_mandatory %]
[% IF changes.
_
group_controls.now_mandatory.size %]
[% FOREACH g = changes.
_
group_controls.now_mandatory %]
Adding [% terms.bugs %] to group '[% g.name FILTER html %]' which is
mandatory for this product<p>
[% g.bug_count FILTER html %] [%+ terms.bugs %] added<p>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment