
01-16-2002, 09:35 PM
|
 |
|
|
Join Date: Nov 2001
Posts: 331
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
[QUOTE] Originally posted by bigmattyh
Around line 20-ish, you'll see a line like this:
PHP Code:
$gnpagetext=bbcodeparse($gnpagetext);
After this line, insert the following code:
PHP Code:
$maxpars = 2; // The maximum number of paragraphs you want to show
$gnpagetext=ereg_replace("(<br />|\n|\r)+", "\n", $gnpagetext);
$gnpagetext=ereg_replace("(\n)+", "\n", $gnpagetext);
$gnparagraphs=explode("\n", $gnpagetext);
for ($par = 0; (($par < $maxpars) and ($gnparagraphs[$par] <> "")); $par++) {
$parcache[$par]=$gnparagraphs[$par];
}
$gnpagetext = implode("\n <br /><br /> \n", $parcache);
if ($gnparagraphs[$maxpars]) {
$gnmorelink="<a href=\"showthread.php?s=$session[sessionhash]&threadid=$gnthreadid\">MORE »</a>";
}
unset($parcache);
|