yxboom
The hack is working perfectly
I don?t know why it didn't work with you
Do the following
Open
forumdisplay.php
find in line 609 :
PHP Code:
if ($wordwrap!=0) {
$thread[title]=dowordwrap($thread[title]);
}
after that add :
PHP Code:
//start characters hack
if(strlen($thread[title]) > 30){
$thread[title] = substr($thread[title],0,25);
$thread[title] = "$thread[title] ...";
}
//end characters hack
30 , 25
That is all, and it will work 100%
But you will not be able to control it from the control panel