Topic: truncated topics when using extern.php

If I want to PHP include some topics from my forum onto a page of my website, extern.php limits the topic length. Is there any way to turn off this truncating?

2

Re: truncated topics when using extern.php

Look for this in extern.php (line 130 I think) and change the number to the length you want

// The length at which topic subjects will be truncated (for HTML output)
$max_subject_length = 30;

Re: truncated topics when using extern.php

awesome! thanks