mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 04:01:24 +00:00
17 lines
287 B
PHP
17 lines
287 B
PHP
<?php
|
|
|
|
require(dirname(__FILE__)."/config.php");
|
|
require(WWW_DIR.'/lib/site.php');
|
|
require(WWW_DIR.'/lib/tvrage.php');
|
|
|
|
$s = new Sites();
|
|
$site = $s->get();
|
|
|
|
if ( $site->lookuptvrage == 1)
|
|
{
|
|
$tvrage = new TVRage(true);
|
|
$tvrage->processTvReleases(($site->lookuptvrage==1));
|
|
}
|
|
|
|
?>
|