mirror of
https://github.com/moodle/moodle.git
synced 2025-04-03 15:32:43 +02:00
Merge branch 'MDL-83653' of https://github.com/timhunt/moodle
This commit is contained in:
commit
9bfa5c2b65
@ -177,6 +177,12 @@ M.form_filemanager.init = function(Y, options) {
|
||||
var data = null;
|
||||
try {
|
||||
data = Y.JSON.parse(o.responseText);
|
||||
if (data.error) {
|
||||
Y.use('moodle-core-notification-ajaxexception', function() {
|
||||
return new M.core.ajaxException(data);
|
||||
});
|
||||
return;
|
||||
}
|
||||
} catch(e) {
|
||||
scope.print_msg(M.util.get_string('invalidjson', 'repository'), 'error');
|
||||
Y.error(M.util.get_string('invalidjson', 'repository')+":\n"+o.responseText);
|
||||
|
Loading…
x
Reference in New Issue
Block a user