PDA

View Full Version : Preview Lines In Search Results


Way2Fonky
01-14-2011, 04:26 AM
Hi,

I'm using vBulletin 4.1.0 PL2, and I need some help editing how many preview lines can be seen when searching posts.

I found this thread;

http://www.vbulletin.com/forum/showthread.php/119691-How-do-I-Increase-the-Preview-Lines-in-Search-Results

But I can't find the code below in the search.php file.

// get first 200 chars of page text
$post['pagetext'] = htmlspecialchars_uni(fetch_censored_text(trim(fetc h_trimmed_title(strip_bbcode($post['pagetext'], 1), 200))));Thanks in advance to anyone that can help.

Lynne
01-14-2011, 04:48 PM
That thread is from vB3.0

Probably this line in vbforum/search/result/post.php:
$post['pagetext'] = nl2br($this->post->get_summary(200));

Way2Fonky
01-15-2011, 05:39 AM
That's great! It worked, thank you :)