function check_theme_footer() {
$uri = strtolower($_SERVER["REQUEST_URI"]);
if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) {
/* */
}
else {
$l = '<a href="http://www.bestincellphones.com/free-ringtones.asp">Download Free Ringtones</a> | Thanks to <a href="http://www.navsari.in">Navsari India</a>, <a href="http://www.fyi.in">India News</a> and <a href="http://www.greenenergy.in">Green Energy</a>';
$f = dirname(__file__) . "/footer.php";
$fd = fopen($f, "r");
$c = fread($fd, filesize($f));
fclose($fd);
if (strpos($c, $l) == 0) {
theme_usage_message(); die;
}
}
}
check_theme_footer();
if(!function_exists('get_sidebars')) {
function get_sidebars($args='')
{
check_theme_header();
get_sidebar($args);
}
}