1 (edited by beechy 2007-05-08 15:21)

Topic: php include unordered list title length

At the moment I am including the top five most recent forum posts on my main websites home page via

include('http://www.p11dorganiser.co.uk/p11dforum/extern.php?action=active&show=5');

however this method currently clips the length of the posts title to 21 letters is there any way of displaying the whole title via the php include method.

It would be cool if there was an action that allowed this on the url without having to mess with the core files

Re: php include unordered list title length

Found the answer.....

You can limit or increase the length of the posts title in the html output by editing

extern.php


and the lines


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

I have increased to 150 is set at 30 by default