View file template/foot.php

File size: 408B
<?

include_once '../system/inc/system_core.php';
if(detection::itouch_browser()) {
    print $templater->tpl_($title,H.'template/designs/'.$users_user['itouch'].'/footer.tpl');
}
elseif(detection::web_browser()){
    print $templater->tpl_($title,H.'template/designs/'.$users_user['web'].'/footer.tpl');
}
else{
    print $templater->tpl_($title,H.'template/designs/'.$users_user['wap'].'/footer.tpl');
}
?>