aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorGervase Markham <gerv@gerv.net>2014-11-25 10:28:41 +0000
committerGervase Markham <gerv@gerv.net>2014-11-25 10:28:41 +0000
commit45877e03a90ffdd5c21f8a9999375cf14f3aaa12 (patch)
treeab0ab53d359af0edcdd453c8c9c1348b5aa266a5 /Bugzilla
parent5d8aa524eff6409055d4d967d2857ede40be4cad (diff)
downloadbugs-45877e03a90ffdd5c21f8a9999375cf14f3aaa12.tar
bugs-45877e03a90ffdd5c21f8a9999375cf14f3aaa12.tar.gz
bugs-45877e03a90ffdd5c21f8a9999375cf14f3aaa12.tar.bz2
bugs-45877e03a90ffdd5c21f8a9999375cf14f3aaa12.tar.xz
bugs-45877e03a90ffdd5c21f8a9999375cf14f3aaa12.zip
Revert "Bug 317021 - improve description of bz_canusewhine* parameters. r=gerv."
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Install.pm6
-rw-r--r--Bugzilla/Install/DB.pm11
2 files changed, 2 insertions, 15 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index 9b7becdcb..07bc9d6c3 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -133,13 +133,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'],
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 50daa3d46..96f14ec0f 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -729,17 +729,6 @@ sub update_table_definitions {
# 2014-11-10 dkl@mozilla.com - Bug 1093928
$dbh->bz_drop_column('longdescs', 'is_markdown');
- $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 #
################################################################