I hate modified the templates when change the skin, so i add new plugin for it:
add plugin: forumhome_complete
Quote:
if ($vbulletin->options['wlhon']) {
$match="\"\.\(\(.show\['guest'\]\).*";
$m=preg_match("/$match/i", $vbulletin->templatecache['FORUMHOME'],$matches, PREG_OFFSET_CAPTURE);
if ($m) {
$insert = $matches[0][1];
$beginning = substr($vbulletin->templatecache['FORUMHOME'], 0, $insert);
$remain=substr($vbulletin->templatecache['FORUMHOME'], $insert);
$match="<!-- main -->";
$m=preg_match("/$match/i", $remain,$matches, PREG_OFFSET_CAPTURE);
if ($m) {
$insert = $matches[0][1];
$ending=substr($remain, $insert);
$vbulletin->templatecache['FORUMHOME']=$beginning.$ending;
}
}
$header.=$welcomeheaders;
}
|