Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
08f464fc
Commit
08f464fc
authored
Feb 06, 2003
by
Leigh B. Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Speed up query that determines if a user has new users to approve.
parent
14e86b6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
www/menu.php3
www/menu.php3
+10
-10
No files found.
www/menu.php3
View file @
08f464fc
...
...
@@ -154,19 +154,19 @@ function WRITESIDEBAR() {
# Only project/group leaders can do these options
# Show a "new" icon if there are people waiting for approval
$query_result
=
DBQueryFatal
(
"SELECT g.* FROM group_membership as g "
.
"LEFT JOIN group_membership as authed "
.
"ON g.pid=authed.pid and g.gid=authed.gid "
.
"and g.uid!='
$auth_usr
' and g.trust='none' "
.
DBQueryFatal
(
"select g.* from group_membership as authed "
.
"left join group_membership as g on "
.
" g.pid=authed.pid and g.gid=authed.gid "
.
"left join users as u on u.uid=g.uid "
.
"
WHERE
u.status!='"
.
"
where
u.status!='"
.
TBDB_USERSTATUS_UNVERIFIED
.
"' and "
.
"u.status!='"
.
TBDB_USERSTATUS_NEWUSER
.
"' and authed.uid='
$login_uid
' and "
.
"(authed.trust='group_root' or "
.
" authed.trust='project_root') "
.
" u.status!='"
.
TBDB_USERSTATUS_NEWUSER
.
"' and g.uid!='
$login_uid
' and "
.
" g.trust='"
.
TBDB_TRUSTSTRING_NONE
.
"' "
.
" and authed.uid='
$login_uid
' and "
.
" (authed.trust='group_root' or "
.
" authed.trust='project_root') "
.
"ORDER BY g.uid,g.pid,g.gid"
);
if
(
mysql_num_rows
(
$query_result
)
>
0
)
{
WRITESIDEBARBUTTON_NEW
(
"New User Approval"
,
$TBBASE
,
"approveuser_form.php3"
);
...
...
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