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) { function identifierFormatter(value, row, index) {
return [ 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, value,
'</a>' '</a>'
].join(''); ].join('');

Loading…
Cancel
Save