moodle/enrol/authorize/authorize.js
2010-01-21 22:19:46 +00:00

6 lines
247 B
JavaScript

function authorize_jump_to_mypayments(e, args) {
var locationtogo = M.cfg.wwwroot + '/enrol/authorize/index.php?status=' + args.status;
locationtogo += '&user=' + (this.checked ? args.userid : '0');
top.location.href = locationtogo;
}