Skip to content
GitLab
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
14d6980a
Commit
14d6980a
authored
Mar 16, 2007
by
Leigh B. Stoller
Browse files
Fix PHP warnings.
parent
9ac161af
Changes
3
Hide whitespace changes
Inline
Side-by-side
www/beginexp_form.php3
View file @
14d6980a
...
...
@@ -560,7 +560,8 @@ function SPITFORM($formfields, $errors)
<td><input type='checkbox'
name='formfields[exp_idleswap]'
value='1'"
;
if
(
$formfields
[
'exp_idleswap'
]
==
"1"
)
{
if
(
isset
(
$formfields
[
'exp_idleswap'
])
&&
$formfields
[
'exp_idleswap'
]
==
"1"
)
{
echo
" checked='1'"
;
}
echo
"></td>
...
...
www/experiment_defs.php
View file @
14d6980a
...
...
@@ -5,6 +5,8 @@
# All rights reserved.
#
#
include_once
(
"template_defs.php"
);
# This class is really just a wrapper around the DB data ...
#
# A cache to avoid lookups. Indexed by node_id.
...
...
www/showexp.php3
View file @
14d6980a
...
...
@@ -7,7 +7,7 @@
include
(
"defs.php3"
);
require
(
"Sajax.php"
);
include
(
"showstuff.php3"
);
include
(
"template_defs.php"
);
include
_once
(
"template_defs.php"
);
sajax_init
();
sajax_export
(
"GetExpState"
,
"Show"
,
"ModifyAnno"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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