Oops. Revert commit with bogus message #2. paperbag=gerv.

This reverts commit 82674d427a9b6f210347279dbb74da631f3d57cb.


git-svn-id: svn://10.0.0.236/trunk@265686 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org 2014-11-24 19:46:36 +00:00
parent 62cd90e825
commit 80ddfb2bfb
4 changed files with 4 additions and 17 deletions

View File

@ -1 +1 @@
9219
9220

View File

@ -1 +1 @@
a395c71859f00992051d53dfdbe7e4597d18100f
3afc1b782bca835fd0a35e7162b29c1972704eff

View File

@ -135,13 +135,11 @@ use constant SYSTEM_GROUPS => (
},
{
name => 'bz_canusewhineatothers',
description => 'Can configure queries and schedules for periodic'
. ' reports to be run and sent via email to other users and groups',
description => 'Can configure whine reports for other users',
},
{
name => 'bz_canusewhines',
description => 'Can configure queries and schedules for periodic'
. ' reports to be run and sent via email to themselves',
description => 'User can configure whine reports for self',
# inherited_by means that users in the groups listed below are
# automatically members of bz_canusewhines.
inherited_by => ['editbugs', 'bz_canusewhineatothers'],

View File

@ -730,17 +730,6 @@ sub update_table_definitions {
$dbh->bz_add_column('longdescs', 'is_markdown',
{TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'});
$dbh->do('UPDATE groups SET description = ? WHERE name = ? and description = ?',
undef,
"Can configure queries and schedules for periodic reports to be run and sent via email to other users and groups",
"bz_canusewhineatothers",
"Can configure whine reports for other users");
$dbh->do('UPDATE groups SET description = ? WHERE name = ? and description = ?',
undef,
"Can configure queries and schedules for periodic reports to be run and sent via email to themselves",
"bz_canusewhines",
"User can configure whine reports for self");
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################