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
283a3cfa
Commit
283a3cfa
authored
Dec 02, 2006
by
Leigh B. Stoller
Browse files
Bug fix.
parent
ef666d82
Changes
2
Show whitespace changes
Inline
Side-by-side
www/joinproject.php3
View file @
283a3cfa
...
...
@@ -777,7 +777,7 @@ if (! $returning) {
#
# Certain of these values must be escaped or otherwise sanitized.
#
$joining_uid
=
(
$USERSELECTUIDS
?
null
:
$formfields
[
joining_uid
]);
$joining_uid
=
(
$USERSELECTUIDS
?
$formfields
[
joining_uid
]
:
null
);
$usr_name
=
addslashes
(
$formfields
[
usr_name
]);
$usr_email
=
$formfields
[
usr_email
];
$password1
=
$formfields
[
password1
];
...
...
www/newproject.php3
View file @
283a3cfa
...
...
@@ -950,7 +950,7 @@ if (count($errors)) {
if
(
!
$returning
)
{
$proj_head_uid
=
((
$USERSELECTUIDS
||
$FirstInitState
==
"createproject"
)
?
null
:
$formfields
[
proj_head_uid
]);
$formfields
[
proj_head_uid
]
:
null
);
$usr_title
=
addslashes
(
$formfields
[
usr_title
]);
$usr_name
=
addslashes
(
$formfields
[
usr_name
]);
$usr_affil
=
addslashes
(
$formfields
[
usr_affil
]);
...
...
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