You run the function when you're looping through the results - not in the query itself.
I looked in /includes/functions.php and found the following lines of code:
PHP Code:
// ############################################################################# /** * Trims a string to the specified length while keeping whole words * * @param string String to be trimmed * @param integer Number of characters to aim for in the trimmed string * @param boolean Append "..." to shortened text * * @return string */ function fetch_trimmed_title($title, $chars = -1, $append = true) { global $vbulletin;
if ($chars == -1) { $chars = $vbulletin->options['lastthreadchars']; }
if ($chars) { // limit to 10 lines (\n{240}1234567890 does weird things to the thread preview) $titlearr = preg_split('#(\r\n|\n|\r)#', $title); $title = ''; $i = 0; foreach ($titlearr AS $key) { $title .= "$key \n"; $i++; if ($i >= 10) { break; } } $title = trim($title); unset($titlearr);
Now if I use the above code as it is in my page it doesn't work, ie. no trimming of the thread-titles. I've tried changing the value of $chars from -1 to other values like 45 but that doesn't work either. Do I need to change anything else for this code to correctly trim the thread-titles?
Can you please give an example of the code I need to use?