[-] FO : fixed entities issue in javascript alerts #PSCFV-9001

This commit is contained in:
Damien Metzger
2013-06-26 16:22:57 +02:00
parent 7427efdb6f
commit 57dd992c28
7 changed files with 16 additions and 16 deletions
@@ -130,10 +130,10 @@
if (jsonData.hasError)
{
var errors = '';
for(error in jsonData.errors)
for (error in jsonData.errors)
//IE6 bug fix
if(error != 'indexOf')
errors += jsonData.errors[error] + "\n";
if (error != 'indexOf')
errors += $('<div />').html(jsonData.errors[error]).text() + "\n";
jAlert(errors);
}
else