expand bbcode ; quote in comments expand bbcode ; quote in comments
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

expand bbcode ; quote in comments

Started by dwo, July 04, 2008, 06:13:44 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

dwo

Hi.

I added a quote function to comments/bbcode. Simply added


         // [q] and [/q] for quote text.
          $text = str_replace("[q]", '<blockquote>&rdquo; ', $text);
          $text = str_replace("[/q]", ' &rdquo;</blockquote>', $text);


to functions.inc.php after function bb_decode($text)

Together with quicktags, very usefull and easy to use.

reagrds, Dietmar