mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-30 01:38:54 +00:00
20 lines
325 B
PHP
20 lines
325 B
PHP
<?php
|
|
|
|
require_once './config.php';
|
|
|
|
|
|
use nntmux\Binaries;
|
|
|
|
|
|
$page = new AdminPage();
|
|
|
|
$bin = new Binaries();
|
|
|
|
$page->title = "Binary Black/Whitelist List";
|
|
|
|
$binlist = $bin->getBlacklist(false);
|
|
$page->smarty->assign('binlist', $binlist);
|
|
|
|
$page->content = $page->smarty->fetch('binaryblacklist-list.tpl');
|
|
$page->render();
|