After I've integrated PhotoPost and Vbulletin, I'm having an error with this section of the comments template kicking in even though it should not, ONLY for old customers. New customers after the conversion do not hit this:
<script type="text/javascript" src="{$Globals['vbulletin']}/clientscript/vbulletin_editor.
js"></script>
<script type="text/javascript" src="{$Globals['vbulletin']}/clientscript/vbulletin_stdedit.
js"></script>
I've traced it down to the code in header-inc.php:
if ( isset($bbuserinfo['userid']) )
{
$vbuserid = $bbuserinfo['userid'];
define( "VB35", 'off' );
}
else
{
What field/etc in the converted users would make this code executed and not for the new? In other words what field do I need to clean up / remove to allow older users to not have VB35 turned off?
Thanks as always!