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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
bf43cc08
Commit
bf43cc08
authored
Jul 22, 2004
by
bugreport%peshkin.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 252190: Fix unitialized value in editusers.cgi
r=vlad a=justdave
parent
5013f383
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
editusers.cgi
editusers.cgi
+3
-3
No files found.
editusers.cgi
View file @
bf43cc08
...
@@ -135,9 +135,9 @@ sub EmitFormElements ($$$$)
...
@@ -135,9 +135,9 @@ sub EmitFormElements ($$$$)
if
(
$user
ne
""
)
{
if
(
$user
ne
""
)
{
print
"</TR><TR><TH VALIGN=TOP ALIGN=RIGHT>Group Access:</TH><TD><TABLE><TR>"
;
print
"</TR><TR><TH VALIGN=TOP ALIGN=RIGHT>Group Access:</TH><TD><TABLE><TR>"
;
SendSQL
(
"SELECT groups.id, groups.name, groups.description, "
.
SendSQL
(
"SELECT groups.id, groups.name, groups.description, "
.
"MAX(
grant_type = "
.
GRANT_DIRECT
.
"),
"
.
"MAX(
IF(grant_type = "
.
GRANT_DIRECT
.
", 1, 0)),
"
.
"MAX(
grant_type = "
.
GRANT_DERIVED
.
"),
"
.
"MAX(
IF(grant_type = "
.
GRANT_DERIVED
.
", 1, 0)),
"
.
"MAX(
grant_type = "
.
GRANT_REGEXP
.
")
"
.
"MAX(
IF(grant_type = "
.
GRANT_REGEXP
.
", 1, 0))
"
.
"FROM groups "
.
"FROM groups "
.
"LEFT JOIN user_group_map "
.
"LEFT JOIN user_group_map "
.
"ON user_group_map.group_id = groups.id "
.
"ON user_group_map.group_id = groups.id "
.
...
...
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