fixed bug where an extra space was added to new replies

This commit is contained in:
Julian Lam
2015-07-16 13:20:26 -04:00
parent d061411747
commit 305c54a727

View File

@@ -164,7 +164,7 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator
tid: tid,
pid: getData(button, 'data-pid'),
topicName: topicName,
text: username + ' ' || ''
text: username ? username + ' ' : ''
});
}
}