1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-19 22:58:16 +00:00

Rearrange group tables directly next to the tables they refer to.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2019-08-05 21:08:36 +02:00
parent 06860ed5b4
commit af754e3fc4
No known key found for this signature in database
GPG Key ID: FB60471F0575164A

View File

@ -1087,15 +1087,15 @@ show_adlists() {
show_whitelist() {
show_db_entries "Exact whitelist" "SELECT * FROM whitelist" "4 100 7 10 13 50"
show_db_entries "Regex whitelist" "SELECT * FROM regex_whitelist" "4 100 7 10 13 50"
show_db_entries "Exact whitelist groups" "SELECT * FROM regex_whitelist_by_group" "4 4"
show_db_entries "Regex whitelist" "SELECT * FROM regex_whitelist" "4 100 7 10 13 50"
show_db_entries "Regex whitelist groups" "SELECT * FROM whitelist_by_group" "4 4"
}
show_blacklist() {
show_db_entries "Exact blacklist" "SELECT * FROM blacklist" "4 100 7 10 13 50"
show_db_entries "Regex blacklist" "SELECT * FROM regex_blacklist" "4 100 7 10 13 50"
show_db_entries "Exact blacklist groups" "SELECT * FROM regex_blacklist_by_group" "4 4"
show_db_entries "Regex blacklist" "SELECT * FROM regex_blacklist" "4 100 7 10 13 50"
show_db_entries "Regex blacklist groups" "SELECT * FROM blacklist_by_group" "4 4"
}