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
b68c03fe
Commit
b68c03fe
authored
Feb 10, 2003
by
Mac Newbold
Browse files
Fix a nit with the project list... swapped expts don't count as running expts.
parent
48385f00
Changes
1
Hide whitespace changes
Inline
Side-by-side
www/showproject_list.php3
View file @
b68c03fe
...
...
@@ -78,7 +78,8 @@ $ncounts = array();
$query_result
=
DBQueryFatal
(
"select e.pid, count(distinct e.eid) as ecount "
.
"from experiments as e group by e.pid"
);
"from experiments as e where state!='
$TB_EXPTSTATE_SWAPPED
' "
.
"group by e.pid"
);
while
(
$row
=
mysql_fetch_array
(
$query_result
))
{
$pid
=
$row
[
0
];
...
...
Write
Preview
Supports
Markdown
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