]> git.mjollnir.org Git - moodle.git/commitdiff
Removing tabs and re-indenting as I seem to have vim misconfigured..
authorpoltawski <poltawski>
Tue, 8 May 2007 12:02:29 +0000 (12:02 +0000)
committerpoltawski <poltawski>
Tue, 8 May 2007 12:02:29 +0000 (12:02 +0000)
admin/uploaduser_form.php

index 93a96de650d7d077702624960849fdbf63b9a864..075baf4ddb2a0c3c8ec3371d4a28249fa30279b5 100644 (file)
@@ -11,8 +11,8 @@ class admin_uploaduser_form extends moodleform {
         $mform->addElement('header', 'settingsheader', get_string('settings'));
 
         $passwordopts = array( 0 => get_string('infilefield', 'auth'),
-                               1 => get_string('createpasswordifneeded', 'auth'),
-                              );
+            1 => get_string('createpasswordifneeded', 'auth'),
+        );
 
         $mform->addElement('select', 'createpassword', get_string('passwordhandling', 'auth'), $passwordopts);
 
@@ -24,7 +24,7 @@ class admin_uploaduser_form extends moodleform {
 
     function get_userfile_name(){
         if ($this->is_submitted() and $this->is_validated()) {
-         // return the temporary filename to process
+            // return the temporary filename to process
             return $this->_upload_manager->files['userfile']['tmp_name'];
         }else{
             return  NULL;