Review comments

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2018-06-17 20:01:46 +02:00
parent a0f9a1bdb8
commit 3f7246968e
2 changed files with 3 additions and 15 deletions

View File

@@ -22,9 +22,9 @@ switch ($listtype) {
break;
case "black":
$exact = array(getListContent("blacklist.txt"));
$regex = array(getListContent("regex.list"));
$list = array_merge($exact, $regex);
$exact = getListContent("blacklist.txt");
$regex = getListContent("regex.list");
$list = array($exact, $regex);
break;
default: