how do I get the Topic -title shown in the post (and in the bbcode)? "$title" or "$theard_title" does not work.
in phpbb3 it was solved with a simple code snippet:
open viewtopic.php
find
Code:
'MESSAGE' => $message,
replace with
Code:
'MESSAGE' => str_replace('{title}', $topic_data['topic_title'], $message),
For every time someone writes {title} is replaced by the title of the topic.