<?php
if (eregi("block-Local_radio.php", $PHP_SELF)) {
Header("Location: index.php");
die();
}
global $prefix, $dbi, $admin;
$ThemeSel = get_theme();
if (file_exists("themes/$ThemeSel/module.php")) {
include("themes/$ThemeSel/module.php");
if (is_active("$default_module") AND file_exists("modules/$default_module/index.php")) {
$def_module = $default_module;
} else {
$def_module = "";
}
}
/* Now we make the Modules block with the correspondent links */
$content .= "<big>&</big>&<a href=\"modules.php?name=Web_Links&l_op=viewlink&cid=3\">Local Radio</a>
\n";
?> |