But here is how to add the block template if you want it anyway...
FIND in modules/topsite/index.php (function topsite_show)
$mklib->printpage("1", "1", "{$mklib->lang['to_title']}", $output);
REPLACE WITH:$blocks = $Skin->view_block("{$mklib->lang['to_title']}", $output);
$mklib->printpage("1", "1", "{$mklib->lang['to_title']}", $blocks);
FIND (function submit_site):$mklib->printpage("1", "1", "{$mklib->lang['to_sign']}", $output);
REPLACE WITH:$blocks = $Skin->view_block("{$mklib->lang['to_sign']}", $output);
$mklib->printpage("1", "1", "{$mklib->lang['to_sign']}", $blocks);
Adding the block template to the other modules is similar.













