|
|
|
user_bulk_download.php
Instaed of $v->name it should be $v-shortname
if ($extrafields = get_records_select('user_info_field')) {
foreach ($extrafields as $n=>$v){
$fields['profile_field_'.$v->shortname] = 'profile_field_'.$v->name;
}
}
It should be
if ($extrafields = get_records_select('user_info_field')) {
foreach ($extrafields as $n=>$v){
$fields['profile_field_'.$v->shortname] = 'profile_field_'.$v->shortname;
}
}
Error and solution found by Lars Kobbe
|
|
Description
|
user_bulk_download.php
Instaed of $v->name it should be $v-shortname
if ($extrafields = get_records_select('user_info_field')) {
foreach ($extrafields as $n=>$v){
$fields['profile_field_'.$v->shortname] = 'profile_field_'.$v->name;
}
}
It should be
if ($extrafields = get_records_select('user_info_field')) {
foreach ($extrafields as $n=>$v){
$fields['profile_field_'.$v->shortname] = 'profile_field_'.$v->shortname;
}
}
Error and solution found by Lars Kobbe |
Show » |
made changes - 21/Oct/08 01:39 AM
| Field |
Original Value |
New Value |
|
Security
|
Minor security issue
[ 10001
]
|
|
|
Assignee
|
moodle.com
[ moodle.com
]
|
Jerome Mouneyrac
[ jerome
]
|
made changes - 21/Oct/08 09:47 AM
|
Status
|
Open
[ 1
]
|
In Progress
[ 3
]
|
made changes - 22/Oct/08 09:38 AM
|
Status
|
In Progress
[ 3
]
|
Resolved
[ 5
]
|
|
Resolution
|
|
Fixed
[ 1
]
|
made changes - 29/Oct/08 07:44 AM
|
Status
|
Resolved
[ 5
]
|
Closed
[ 6
]
|
|
QA Assignee
|
|
skodak
|
made changes - 18/Mar/09 02:28 AM
|
Link
|
|
This issue is duplicated by MDL-16721
[ MDL-16721
]
|
|