mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
18 lines
267 B
PHP
18 lines
267 B
PHP
<?php
|
|
|
|
require(dirname(__FILE__)."/config.php");
|
|
require(WWW_DIR.'/lib/site.php');
|
|
require(WWW_DIR.'/lib/thetvdb.php');
|
|
|
|
$s = new Sites();
|
|
$site = $s->get();
|
|
|
|
if ( $site->lookupthetvdb == 1)
|
|
{
|
|
$thetvdb = new TheTVDB(true);
|
|
$thetvdb->processReleases();
|
|
}
|
|
|
|
?>
|
|
|