Revert "Bug 317021 - improve description of bz_canusewhine* parameters. r=gerv." Old version of patch committed by mistake.

This reverts commit 88e4ee5b99ef75a149f8d39bd2b92ccac3e5743b.


git-svn-id: svn://10.0.0.236/trunk@265689 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org 2014-11-25 10:45:51 +00:00
parent cbe7f7e19a
commit 87fbd3d0ca
4 changed files with 4 additions and 17 deletions

View File

@ -1 +1 @@
9222 9223

View File

@ -1 +1 @@
88e4ee5b99ef75a149f8d39bd2b92ccac3e5743b 977de764485c48c16c4b34e73ab2f1d08506b0a7

View File

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

View File

@ -730,17 +730,6 @@ sub update_table_definitions {
$dbh->bz_add_column('longdescs', 'is_markdown', $dbh->bz_add_column('longdescs', 'is_markdown',
{TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'}); {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 # # New --TABLE-- changes should go *** A B O V E *** this point #
################################################################ ################################################################