Disable Whitelist/Blacklist feature for release

See #39 for why this is needed
This commit is contained in:
Mcat12
2016-02-21 15:02:48 -05:00
parent 4829dde9bc
commit 18a44efd95
4 changed files with 0 additions and 154 deletions

View File

@@ -1,12 +0,0 @@
<?php
if(!isset($_GET['domain'], $_GET['list']))
die();
switch($_GET['list']) {
case "white":
exec("/usr/local/bin/whitelist.sh -q -d ${_GET['domain']}");
break;
case "black":
exec("/usr/local/bin/blacklist.sh -q -d ${_GET['domain']}");
break;
}