NTLDR |
11-02-2002 08:53 PM |
Find in vbindex.php:
PHP Code:
$newstext=censortext(bbcodeparse($news[pagetext],0,1));
Replace with:
PHP Code:
if ($news[postuserid]==YOUR_ID) {
$newstext=bbcodeparse2($news[pagetext],1,1,1,1);
} else {
$newstext=bbcodeparse($news[pagetext],0,1);
}
Untested, but no reason it shouldn't work, replace YOUR_ID with your id, as this is no low load way of geting usergroupids for posts here, but you can use the standard OR $news[postuserid]==ID to add extra users to it. You may also want to check the queries used and alter the 1's in this line and see what happens: $newstext=bbcodeparse2($news[pagetext],1,1,1,1);
|