|
21.01.2006, 00:17
Вот код темы отвечающей за правый блок! Кто знает как исправить чтобы блок правый заработал! ато он работает только со стандартной темой! ПЛИЗ!
PHP код:
function themefooter() {
global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
if ($index == 1)
{
$tmpl_file = "themes/iCGstation/center_right.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(right);
}
echo" </td>"
. " </tr>"
. " </table>"
. " <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">"
. " <tr> "
. " <td align=\"right\"><img src=\"themes/iCGstation/forums/images/top.gif\" border=\"0\" /></a></td>"
. " </tr>"
. " </table>"
. " <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">"
. " <tr> "
. " <td><img src=\"themes/iCGstation/forums/images/bt_left.gif\" border=\"0\" /></a></td>"
. " <td width=\"100%\" class=\"indexbom\" align=\"center\">";
$footer_message = footmsg();
echo " </td>"
. " <td><img src=\"themes/iCGstation/forums/images/bt_right.gif\" border=\"0\" /></a></td>"
. " </tr>"
. " </table>"
. " </td>"
. " <td width=\"10\" nowrap=\"nowrap\" class=\"righttd\"></td>"
. " </tr>"
. "</table>"
."";
}
|
|