]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Revert "Bug 317021 - improve description of bz_canusewhine* parameters. r=gerv."
authorGervase Markham <gerv@gerv.net>
Tue, 25 Nov 2014 10:28:41 +0000 (10:28 +0000)
committerGervase Markham <gerv@gerv.net>
Tue, 25 Nov 2014 10:28:41 +0000 (10:28 +0000)
This reverts commit 5d8aa524eff6409055d4d967d2857ede40be4cad.

Bugzilla/Install.pm
Bugzilla/Install/DB.pm

index 9b7becdcbcee6f5ee3357d9c4dc858b137e7069e..07bc9d6c3bc67c69027df9a6e0c4ed525274a292 100644 (file)
@@ -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'],
index 50daa3d462fcc5032ac91c296c3ea8d5cecb54ea..96f14ec0ff69bab35a5b602a48a27e84c300b03d 100644 (file)
@@ -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 #
     ################################################################