Ah, sorry, my bad.
Its supposed to be this:
PHP Code:
if (strlen($box_forumid_1_first_post[pagetext]) > '250')
{
$box_forumid_1_first_post[pagetext] = fetch_trimmed_title($box_forumid_1_first_post[pagetext], '250') . construct_phrase($vbphrase['read_more'], $vboptions['bburl'], $box_forumid_1thread['threadid'], $session['sessionurl']);
}
And if that doesnt work, you can try this aswell:
PHP Code:
if (strlen($box_forumid_1_first_post['pagetext']) > '250')
{
$box_forumid_1_first_post['pagetext'] = fetch_trimmed_title($box_forumid_1_first_post['pagetext'], '250') . construct_phrase($vbphrase['read_more'], $vboptions['bburl'], $box_forumid_1thread['threadid'], $session['sessionurl']);
}