by Thierry Deschamps.
Hello, anything new about this issue?
It seems to work with this small hack in the function make_menu_from_list in lib/moodle.php (2.3):
function make_menu_from_list($list, $separator=',') {
$array = array_reverse(explode($separator, $list), true);
foreach ($array as $key => $item) {
$outarray[$key+1] = trim($item);
}
$outarray[0] = trim(get_string('nograde'));
return $outarray;
}
But I'm not aware of all its consequences...