Skip to content

Commit

Permalink
fixed incorrect use of DML method
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Sep 17, 2010
1 parent db82872 commit b475d8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/user/user_bulk_download.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'msn' => 'msn',
'country' => 'country');

if ($extrafields = $DB->get_records_select('user_info_field')) {
if ($extrafields = $DB->get_records('user_info_field')) {
foreach ($extrafields as $n=>$v){
$fields['profile_field_'.$v->shortname] = 'profile_field_'.$v->shortname;
}
Expand Down

0 comments on commit b475d8b

Please sign in to comment.