mirror of
https://github.com/moodle/moodle.git
synced 2025-04-04 16:04:00 +02:00
MDL-83653 file manager: report ajax errors
This is for things like when you click on a file, and then click on the delete button, and an error happens then. Previously that was ignored.
This commit is contained in:
parent
2b337b49f9
commit
09aacafb9e
@ -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