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
1eddd90b
Commit
1eddd90b
authored
Nov 09, 2017
by
Leigh B Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor fix to the "joined" column in show project/group members.
parent
7e13f79b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
www/aptui/groups.ajax
www/aptui/groups.ajax
+1
-1
www/aptui/show-project.ajax
www/aptui/show-project.ajax
+2
-2
No files found.
www/aptui/groups.ajax
View file @
1eddd90b
...
...
@@ -273,7 +273,7 @@ function Do_MemberList()
$blob
[
"uid"
]
=
$user
->
uid
();
$blob
[
"name"
]
=
$user
->
name
();
$blob
[
"email"
]
=
$user
->
email
();
$blob
[
"joined"
]
=
DateStringGMT
(
$
user
->
created
()
);
$blob
[
"joined"
]
=
DateStringGMT
(
$
membership
[
"date_applied"
]
);
#
# Need to tag the group leader explicitly.
#
...
...
www/aptui/show-project.ajax
View file @
1eddd90b
<?php
#
# Copyright (c) 2000-201
6
University of Utah and the Flux Group.
# Copyright (c) 2000-201
7
University of Utah and the Flux Group.
#
# {{{EMULAB-LICENSE
#
...
...
@@ -150,7 +150,7 @@ function Do_MemberList()
$blob
[
"uid"
]
=
$user
->
uid
();
$blob
[
"name"
]
=
$user
->
name
();
$blob
[
"email"
]
=
$user
->
email
();
$blob
[
"joined"
]
=
DateStringGMT
(
$
user
->
created
()
);
$blob
[
"joined"
]
=
DateStringGMT
(
$
membership
[
"date_applied"
]
);
$blob
[
"trust"
]
=
$newTrustMap
[
$membership
[
"trust"
]];
$blob
[
"approved"
]
=
(
$target_project
->
UserTrust
(
$user
)
==
TBDB_TRUSTSTRING_NONE
?
0
:
1
);
...
...
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