[-] 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
+1 -1
View File
@@ -161,7 +161,7 @@ function getHookableList() {
var errors = '';
for (error in jsonData.errors) //IE6 bug fix
if (error != 'indexOf')
errors += jsonData.errors[error] + "\n";
errors += $('<div />').html(jsonData.errors[error]).text() + "\n";
alert(errors);
}
else