1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-05 00:13:29 +02:00

[ticket/13771] Allow AJAX errors to support exceptions messages

PHPBB3-13771
This commit is contained in:
Matt Friedman 2015-04-21 00:19:41 -07:00
parent c46024bfa2
commit 4a7f905c6a

View File

@ -263,7 +263,11 @@ phpbb.ajaxify = function(options) {
}
phpbb.clearLoadingTimeout();
var errorText = false;
if (typeof errorThrown === 'string' && errorThrown.length > 0) {
var responseText = $.parseJSON(jqXHR.responseText);
if (typeof responseText.message === 'string' && responseText.message.length > 0) {
errorText = responseText.message;
}
else if (typeof errorThrown === 'string' && errorThrown.length > 0) {
errorText = errorThrown;
}
else {