Skip to content
Snippets Groups Projects
Commit 6cd77937 authored by Angie Byron's avatar Angie Byron
Browse files

#602570 by dww: Fix code style in _system_filetransfer_backend_form_common().

parent 2eb7c94e
No related branches found
No related tags found
No related merge requests found
......@@ -1404,24 +1404,20 @@ function _system_filetransfer_backend_form_common() {
'#title' => t('Host'),
'#default_value' => 'localhost',
);
$form['port'] = array (
$form['port'] = array(
'#type' => 'textfield',
'#title' => t('Port'),
'#default_value' => NULL,
);
$form['username'] = array (
$form['username'] = array(
'#type' => 'textfield',
'#title' => t('Username'),
);
$form['password'] = array (
$form['password'] = array(
'#type' => 'password',
'#title' => t('Password'),
'#description' => t('This is not saved in the database and is only used to test the connection'),
);
return $form;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment