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
a19c9897
Commit
a19c9897
authored
Apr 11, 2003
by
Mac Newbold
Browse files
Fix boolean error in last commit.
parent
1db322fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
www/showexp_list.php3
View file @
a19c9897
...
...
@@ -511,7 +511,7 @@ if ($thumb && !$idle) {
}
$idlemailinterval
=
TBGetSiteVar
(
"idle/mailinterval"
);
# Is it toosoon to send another mail?
$toosoon
=
(
$swapreq
==
0
||
(
$lastswapreq
<
$idlemailinterval
));
$toosoon
=
(
$swapreq
>
0
&&
(
$lastswapreq
<
$idlemailinterval
));
$lastlogin
=
"<td>"
;
if
(
$lastexpnodelogins
=
TBExpUidLastLogins
(
$pid
,
$eid
))
{
$daysidle
=
$lastexpnodelogins
[
"daysidle"
];
...
...
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