1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-12-22 14:58:08 +00:00

Merge pull request #2383 from pi-hole/feature/privacy-level-4

Add support for privacy level 4
This commit is contained in:
DL6ER 2018-08-21 13:03:41 +02:00 committed by GitHub
commit 940c9c3bae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -541,8 +541,8 @@ clearAudit()
}
SetPrivacyLevel() {
# Set privacy level. Minimum is 0, maximum is 3
if [ "${args[2]}" -ge 0 ] && [ "${args[2]}" -le 3 ]; then
# Set privacy level. Minimum is 0, maximum is 4
if [ "${args[2]}" -ge 0 ] && [ "${args[2]}" -le 4 ]; then
changeFTLsetting "PRIVACYLEVEL" "${args[2]}"
fi
}