phpBB3 automatically truncates the topics to 60 characters. This mod truncates only to 100.
They dont match because the topic from the mod has up to 40 more characters.
You can either fix this by shortening the substr to 0,60 or by modifying the phpbb code to allow 100 character titles.
includes/function_content.php line 1070
Code: Select all
function truncate_string($string, $max_length = 60, $allow_reply = true, $append = '')
Code: Select all
function truncate_string($string, $max_length = 100, $allow_reply = true, $append = '')

edit: seems to work great
