Fixed Tags not joined properly in template forum_post_thread

TickTackk

Well-known member
Affected version
2.0.*
PHP:
<xf:tokeninputrow name="tags" value="{{ $thread.tags ?: $forum.draft_thread.tags }}"
Should be:
PHP:
<xf:tokeninputrow name="tags" value="{{ $thread.tags ? $thread.tags|join(', ') : $forum.draft_thread.tags }}"
 
Thank you for reporting this issue. The issue is now resolved and we are aiming to include that in the next XF release (2.0.10).

Change log:
When creating a thread, if the thread record already has tags, join the tags array to a comma separated string.
Did you get the message alert this time? :)
 
Top Bottom