From e90e54cec16db966b3e91511b0bdf5f781dd7f3d Mon Sep 17 00:00:00 2001 From: Baris Usakli Date: Tue, 26 Nov 2013 14:37:27 -0500 Subject: [PATCH] fixed icons in topic move --- public/src/forum/topic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/forum/topic.js b/public/src/forum/topic.js index c831f634ff..186853a83a 100644 --- a/public/src/forum/topic.js +++ b/public/src/forum/topic.js @@ -136,7 +136,7 @@ define(function() { for (x = 0; x < numCategories; x++) { info = data.categories[x]; categoryEl.className = info.blockclass + (info.disabled === '1' ? ' disabled' : ''); - categoryEl.innerHTML = ' ' + info.name; + categoryEl.innerHTML = ' ' + info.name; categoryEl.setAttribute('data-cid', info.cid); categoriesFrag.appendChild(categoryEl.cloneNode(true)); }