Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
aeb74078
Commit
aeb74078
authored
Apr 15, 2003
by
Leigh B. Stoller
Browse files
Change order in approveproject list (most recent at the top).
parent
70d88fbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
www/approveproject_list.php3
View file @
aeb74078
...
...
@@ -32,7 +32,9 @@ if (! $isadmin) {
# implies denying the project leader account, when there is just a single
# project pending for that project leader.
#
$query_result
=
DBQueryFatal
(
"SELECT * from projects where approved='0'"
);
$query_result
=
DBQueryFatal
(
"SELECT * from projects "
.
"where approved='0' order by created desc"
);
if
(
mysql_num_rows
(
$query_result
)
==
0
)
{
USERERROR
(
"There are no projects to approve!"
,
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