Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 357917 - Bugzilla lost the votes column
Summary: Bugzilla lost the votes column
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Infrastructure
Classification: Unclassified
Component: Bugzilla (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Bugzilla Admins
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-03-08 12:53 UTC by Torsten Veller (RETIRED)
Modified: 2013-05-25 17:46 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Torsten Veller (RETIRED) gentoo-dev 2011-03-08 12:53:17 UTC
The votes are no longer available at
https://bugs.gentoo.org/colchange.cgi
Comment 1 Christian Ruppert (idl0r) gentoo-dev 2011-04-24 13:46:16 UTC
CC'ing upstream here as I think its an upstream bug.
Comment 2 Frédéric Buclin 2011-04-24 23:49:05 UTC
Not an upstream bug, no. I cannot reproduce your issue upstream, neither with Bugzilla 4.0, nor with 4.1.1.
Comment 3 Christian Ruppert (idl0r) gentoo-dev 2013-05-25 17:46:08 UTC
Should be fixed now.
The problem was:
my $field = new Bugzilla::Field({ name => 'votes' }); 
if (!$field) {
    Bugzilla::Field->create(
        { name => 'votes', description => 'Votes', buglist => 1 }); 
}

So Voting was part of Bugzilla before and thus we had that field already but for some reason "buglist" was set to "0" instead of "1". I fixed that now and you should be able to add the Votes column back.