Quote:
Originally posted by Parker Clack
tubedogg:
I LOVE this hack.
I added this to the last10.php file to parse the bbcode in the messages that are displayed.
First off I added:
require('./global.php');
then I changed
$lastpost2 = $lastpost1[pagetext];
to
$lastpost2 = bbcodeparse($lastpost1[pagetext]);
and
lastpostshort = $lastpost2;
to
$lastpostshort = bbcodeparse($lastpost2);
This enables the vBcode to parse and show up in the displayed message. HTML (if you allow it) comes through just fine.
Also, I found if you add the global.php require in the top10.php file you don't need to use the
require("$path/config.php"); line.
Thanks again for the great hack.
Parker
|
Parker,
I like your additions, but they only work if the person viewing the page has already visited your forum in the past. If they have not they get the dreaded error:
Warning: Cannot add header information - headers already sent by (output started at /usr/local/etc/httpd/htdocs/sbw/forum/last10.php:2)
in /usr/local/etc/httpd/htdocs/sbw/forum/admin/functions.php on line 1090
I like Tube's hack, but until it parses VBCode without the error above for new users I don't think a lot of people will be able to use it.