]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-16929: fix bulk user download function. (the shortname column title is now profil...
authorjerome <jerome>
Wed, 22 Oct 2008 01:33:37 +0000 (01:33 +0000)
committerjerome <jerome>
Wed, 22 Oct 2008 01:33:37 +0000 (01:33 +0000)
admin/user/user_bulk_download.php

index a93ba17786eadad347477282e7d41c698396e9da..96a59bee800bf48ab8f393f3cd15d805d5e461fa 100755 (executable)
@@ -39,7 +39,7 @@ if ($format) {
 
     if ($extrafields = $DB->get_records_select('user_info_field')) {
         foreach ($extrafields as $n=>$v){
-            $fields['profile_field_'.$v->shortname] = 'profile_field_'.$v->name;
+            $fields['profile_field_'.$v->shortname] = 'profile_field_'.$v->shortname;
         }
     }