fixed bug where an extra space was added to new replies

v1.18.x
Julian Lam 10 years ago
parent d061411747
commit 305c54a727

@ -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 + ' ' : ''
});
}
}

Loading…
Cancel
Save