~ubuntu-branches/ubuntu/gutsy/bugzilla/gutsy-security

« back to all changes in this revision

Viewing changes to buglist.cgi

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine, Alexis Sukrieh, Francesco P. Lovergine
  • Date: 2004-12-07 22:54:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041207225445-ezb3nym06pow9mng
Tags: 2.16.7-0.2
* NMU 0-days due to serious/important bug solving which prevents
  bugzilla entering testing.

[ Alexis Sukrieh ]

* Post-inst won't fail anymore when no MySQL server is
  available. Added an automatic way of setting up the MySQL server if
  /etc/mysql/debian.cnf exists, will read values from it then.
  (closes: #250638)
* Using a MySQL user with '-' inside its name won't fail anymore.
  (closes unreported bug)
* Better handling on DBI connection errors. When DBI complains about
  something, user is not confused anymore by ugly error messages.
  (closes: #154249)
* Running checksetup.pl by hand won't break the Bugzilla's installation
  anymore. User can use it as he want without running dpkg-reconfigure.
  (closes: #200707)

[ Francesco P. Lovergine ]

* Now rules removes .cvsignore file which trashes /usr/share/bugzilla/template.
* Added virtual package httpd to the list of web server.
  (closes: #213784)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1525
1525
if ($dotweak) {
1526
1526
    $vars->{'dotweak'} = 1;
1527
1527
    $vars->{'use_keywords'} = 1 if @::legal_keywords;
1528
 
 
1529
 
    $vars->{'products'} = \@::legal_product;
 
1528
    my @entry_products = grep {(!Param("usebuggroups") 
 
1529
                             || !GroupExists($_) 
 
1530
                             || UserInGroup($_))} @::legal_product;
 
1531
    $vars->{'products'} = \@entry_products;
1530
1532
    $vars->{'platforms'} = \@::legal_platform;
1531
1533
    $vars->{'priorities'} = \@::legal_priority;
1532
1534
    $vars->{'severities'} = \@::legal_severity;