Solved push_user_post_merge renders HTML prefix

This topic has been solved
D

DragonByte Tech

Guest
push_user_post_merge
HTML:

Code:
{{ phrase('your_posts_in_thread_x_were_merged_together', {
    'source': prefix('thread', $extra.prefix_id) . $extra.title
}) }}
<xf:if is="$extra.reason">{{ phrase('reason:') }} {$extra.reason}</xf:if>
<push:url>{{ base_url($extra.threadLink, 'canonical') }}</push:url>

push_user_post_move
HTML:

Code:
{{ phrase('your_post_in_thread_x_was_moved_to_y', {
    'title': $extra.title,
    'target': prefix('thread', $extra.prefix_id, 'plain') . $extra.targetTitle
})...

Read more

Continue reading...