gradebook MDL-22428 fixed a JS problem that prevented the user from changing a course's aggregation method

This commit is contained in:
Andrew Davis
2010-05-12 07:41:31 +00:00
parent ffa3bfb36f
commit 43cc3cbd6f
+1 -1
View File
@@ -224,5 +224,5 @@ function submit_bulk_move(e, args) {
function update_category_aggregation(e, args) {
var selectmenu = e.target;
window.location = 'index.php?id='+args.courseid+'&category='+args.category+'&aggregationtype='+selectmenu.value+'&sesskey='+args.sesskey;
window.location = 'index.php?id='+args.courseid+'&category='+args.category+'&aggregationtype='+selectmenu.get('value')+'&sesskey='+args.sesskey;
}