Re: Error (and fix) for comments and bbcode

"Seth Cribby" <[email protected]> Mon, 2 Sep 2002 13:06:48 -0700
Newsgroups gmane.comp.web.envolution.devel
Message-ID <[email protected]>
oops, the file is modules/NS-Comments/index.php

Fix:

Lines 561 and 562
-------------------------------
where it says:
echo substr("genBBcodeDisplay($comment)", 0, $maxco.......
should be:
echo substr(genBBcodeDisplay($comment), 0, $maxco....... 


just take out the quotation marks and it works.  There are two of these one on 561, one on 562.



Line 666  (what a line #)
---------------------------------------
where it says:
<font class=\"pn-normal\">".pnVarPrepHTMLDisplay($comment)."</font>
should be:
<font class=\"pn-normal\">".genBBcodeDisplay($comment)."</font>


Seth