diff --git a/mozilla/webtools/bugzilla/.bzrrev b/mozilla/webtools/bugzilla/.bzrrev index 2dca0ea27bd..83828a5281a 100644 --- a/mozilla/webtools/bugzilla/.bzrrev +++ b/mozilla/webtools/bugzilla/.bzrrev @@ -1 +1 @@ -9221 \ No newline at end of file +9222 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/.gitrev b/mozilla/webtools/bugzilla/.gitrev index 874508fd593..00d9a49fbc7 100644 --- a/mozilla/webtools/bugzilla/.gitrev +++ b/mozilla/webtools/bugzilla/.gitrev @@ -1 +1 @@ -34f2b77f153f9f5ab4a4ef6723dcc31fff50a4d9 \ No newline at end of file +88e4ee5b99ef75a149f8d39bd2b92ccac3e5743b \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/Bugzilla/Install.pm b/mozilla/webtools/bugzilla/Bugzilla/Install.pm index 5a2266e36fb..8d07eecc367 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Install.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Install.pm @@ -135,11 +135,13 @@ use constant SYSTEM_GROUPS => ( }, { name => 'bz_canusewhineatothers', - description => 'Can configure whine reports for other users', + description => 'Can configure queries and schedules for periodic' + . ' reports to be run and sent via email to other users and groups', }, { name => 'bz_canusewhines', - description => 'User can configure whine reports for self', + description => 'Can configure queries and schedules for periodic' + . ' reports to be run and sent via email to themselves', # inherited_by means that users in the groups listed below are # automatically members of bz_canusewhines. inherited_by => ['editbugs', 'bz_canusewhineatothers'], diff --git a/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm b/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm index ab02fe41db3..540845fb21e 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Install/DB.pm @@ -730,6 +730,17 @@ 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 # ################################################################