Is this still necessary.? (4.2.0 PL3)
I don't see it anywhere in the post.php file
Quote:
/*================================================= =====================*\
|| 4. Optional File Edit ||
\*================================================ ======================*/
In vBulletin version 4.0.6 and above, Internet Brands changed the way
search results were being shown.
Hidden content may be exposed unless you perform this file edit.
In /vb/legacy/post.php find:
----------
// Deal with the case that quote was the only content of the post
if (trim($page_text) == '')
{
$page_text = $this->get_field('pagetext');
$strip_quotes = false;
}
----------
Add Below:
----------
// DBTECH THANKS - STRIP HIDE
global $vbphrase;
THANKS::doBBCode($page_text, $vbphrase['dbtech_thanks_stripped_content']);
// DBTECH THANKS - STRIP HIDE
---------
|