Wow... a backlink for like... 2 lines of code? No way I'm installing this.
PHP Code:
ob_start();
$logect_ip = $_SERVER['REMOTE_ADDR'];
$php_include = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('footer',array('logect_ip' => $logect_ip));
can be reduced to:
PHP Code:
vB_Template::preRegister('footer',array('logect_ip' => $_SERVER['REMOTE_ADDR']));
the output buffer thing is just completely useless and adds unnecessary process to your mod.
also lol @ 2 vB_TemplateParser for placing just a link into the footer... are you serious about this?