Quote:
Originally Posted by Dr.CustUmz
causes everything to go white with no page source lol
|
Yeah, I got the same on my vB 3.8.9 dev site, but I thought it worth a shot since it works with vB 4.2.x.
--------------- Added [DATE]1460691040[/DATE] at [TIME]1460691040[/TIME] ---------------
This works on my vB 3.8.9:
PHP Code:
$t_arr = $vbulletin->templatecache;
$t_keys = array_keys($t_arr);
$count = count($t_keys);
for ($n = 0; $n < $count; $n++)
{
if (strpos($t_arr[$t_keys[$n]], '<body') !== false)
{
$vbulletin->templatecache[$t_keys[$n]] = str_replace("<body", "<body name='myName'", $vbulletin->templatecache[$t_keys[$n]]);
}
}