mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
6 lines
247 B
JavaScript
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;
|
|
}
|