Fixing encoding issue

merge-requests/1/head
Dulitha Wijewantha 10 years ago
parent c11eeaaccc
commit b6f7998db7

@ -17,7 +17,7 @@
*/
function identifierFormatter(value, row, index) {
return [
'<a class="like" href="/cdm/devices/' + row["deviceType"] + '/' + value + '" title="Like">',
'<a class="like" href="/cdm/devices/' + row["deviceType"] + '/' + escape(value) + '" title="Like">',
value,
'</a>'
].join('');

Loading…
Cancel
Save