diff --git a/data/web/js/site/quarantine.js b/data/web/js/site/quarantine.js
index c4d19cf9..2c6f58c1 100644
--- a/data/web/js/site/quarantine.js
+++ b/data/web/js/site/quarantine.js
@@ -90,8 +90,9 @@ jQuery(function($){
$('#qid_detail_recipients').html('');
if (typeof data.recipients !== 'undefined') {
$.each(data.recipients, function(index, value) {
- var displayStr = value.address + (value.type != 'to' ? (' (' + value.type.toUpperCase() + ')') : '');
- $('#qid_detail_recipients').append('' + displayStr + '');
+ var elem = $('');
+ elem.text(value.address + (value.type != 'to' ? (' (' + value.type.toUpperCase() + ')') : ''));
+ $('#qid_detail_recipients').append(elem);
});
}