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: <br /> <br />[]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[/] <br /> <br />[]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); <br /> <br /> // ------------------------- <br /> // Standard icon is the note <br /> if (!$icon) { <br /> $icon = "book.gif"; <br /> } <br /> <br /> $Body = strip_tags($Body); <br /> $Body = htmlspecialchars($Body); <br /> if ( strlen($Body) > 100 ) { <br /> $Body = substr($Body, 0, 100); <br /> $Body .= " ..."; <br /> }[/] <br /> <br />down a bit where $postlist is being set, add this above the line that sets $Subject: <br /> <br />[]$postrow[$i]['Body'] = $Body; [/] <br />then this to postlist.thtml: <br /> <br />[]<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']}">[/]