Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
45877e03
Commit
45877e03
authored
Nov 25, 2014
by
Gervase Markham
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Bug 317021 - improve description of bz_canusewhine* parameters. r=gerv."
This reverts commit
5d8aa524
.
parent
5d8aa524
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
15 deletions
+2
-15
Install.pm
Bugzilla/Install.pm
+2
-4
DB.pm
Bugzilla/Install/DB.pm
+0
-11
No files found.
Bugzilla/Install.pm
View file @
45877e03
...
...
@@ -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'
],
...
...
Bugzilla/Install/DB.pm
View file @
45877e03
...
...
@@ -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 #
################################################################
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment