summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-12 20:12:28 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-12 20:12:28 +0000
commit6cd77937db8001bbdca42982515ded9c359aa83b (patch)
tree4550c22a5a211207870a904d3fa0de9c755e74ba
parent2eb7c94ed559c5ccd1fdae1d6a282f64c2cd79fe (diff)
downloadbrdo-6cd77937db8001bbdca42982515ded9c359aa83b.tar.gz
brdo-6cd77937db8001bbdca42982515ded9c359aa83b.tar.bz2
#602570 by dww: Fix code style in _system_filetransfer_backend_form_common().
-rw-r--r--modules/system/system.module10
1 files changed, 3 insertions, 7 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 9b6a90bd4..8ddfea03f 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -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;
}