Not at all - no additional queries are done and it just adds a title tag to the a href link. I only had to add like 5 lines to postlist.php:
[]SELECT t1.B_Number,t1.B_Parent,t1.B_Username,t1.B_Posted,t1.B_Last_Post,t1.B_Last_Number,t1.B_Last_Name,t1.B_Last_Approved,t1.B_Subject,t1.B_Main,t1.B_Status,t1.B_Approved,t1.B_Icon,t1.B_Reged,t1.B_Counter,t1.B_Sticky,t1.B_Replies,t1.B_Rating,t1.B_Rates,t1.B_RealRating,t2.U_Color,t2.U_Status,t1.B_PosterId,t1.B_File,t1.B_Body[/]
[]list($Number,$Parent,$Username,$Posted,$Last_Post,$Last_Number,$Last_Name,$Last_Approved,$Subject,$Main,$Open,$Approved,$icon,$Reged,$Counter,$Sticky,$Replies,$Rating,$Rates,$stars,$Color,$PostStatus,$posterid,$file,$Body) = $dbh -> fetch_array($sth);
// -------------------------
// Standard icon is the note
if (!$icon) {
$icon = "book.gif";
}
$Body = strip_tags($Body);
$Body = htmlspecialchars($Body);
if ( strlen($Body) > 100 ) {
$Body = substr($Body, 0, 100);
$Body .= " ...";
}[/]
down a bit where $postlist is being set, add this above the line that sets $Subject:
[]$postrow[$i]['Body'] = $Body; [/]
then this to postlist.thtml:
[]<a href="{$config['phpurl']}/$mode.php?Cat=$Cat&Board=$Board&Number={$postrow[$i]['Number']}&page=$page&view=$view&sb=$sb&o=$o&fpart={$postrow[$i]['fpart']}{$postrow[$i]['jumper']}" title="{$postrow[$i]['Body']}">[/]