diff --git a/modules/system/system.module b/modules/system/system.module
index 9b6a90bd4b5ed1c6c8dcb58956c1201c8db13f2f..8ddfea03f71cd1d1f699d7765ee693ca080c9a80 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;
 }