diff --git a/scripts/pi-hole/php/teleporter.php b/scripts/pi-hole/php/teleporter.php index cfcc857c..5c75580a 100644 --- a/scripts/pi-hole/php/teleporter.php +++ b/scripts/pi-hole/php/teleporter.php @@ -459,6 +459,7 @@ if(isset($_POST["action"])) if(isset($_POST["client"]) && $file->getFilename() === "client_by_group.json") { $num = archive_restore_table($file, "client_by_group", $flushtables); + echo "Processed client group assignments (".$num." entries)
\n"; $importedsomething = true; } @@ -467,12 +468,14 @@ if(isset($_POST["action"])) $file->getFilename() === "domainlist_by_group.json") { $num = archive_restore_table($file, "domainlist_by_group", $flushtables); + echo "Processed black-/whitelist group assignments (".$num." entries)
\n"; $importedsomething = true; } if(isset($_POST["adlist"]) && $file->getFilename() === "adlist_by_group.json") { $num = archive_restore_table($file, "adlist_by_group", $flushtables); + echo "Processed adlist group assignments (".$num." entries)
\n"; $importedsomething = true; }