This works on my vB 4.2.x dev site...a plugin hooked at "parse_templates":
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]]);
}
}