Wording adjustment

This commit is contained in:
Promofaux 2016-10-31 21:40:20 +00:00
parent 229439c7b7
commit 425659af5f

View file

@ -499,13 +499,13 @@ setDNS() {
} }
setLogging() { setLogging() {
LogToggleCommand=(whiptail --separate-output --radiolist "Select Logging mode:" ${r} ${c} 6) LogToggleCommand=(whiptail --separate-output --radiolist "Do you want to log queries?\n (Disabling will render graphs on the Admin page useless):" ${r} ${c} 6)
DNSChooseOptions=("On (Reccomended)" "" on DNSChooseOptions=("On (Reccomended)" "" on
Off "" off) Off "" off)
DNSchoices=$("${DNSChooseCmd[@]}" "${DNSChooseOptions[@]}" 2>&1 >/dev/tty) DNSchoices=$("${DNSChooseCmd[@]}" "${DNSChooseOptions[@]}" 2>&1 >/dev/tty)
if [[ $? = 0 ]];then if [[ $? = 0 ]];then
case ${DNSchoices} in case ${DNSchoices} in
"On (Reccomended)") "On (Recommended)")
echo "::: Logging On." echo "::: Logging On."
queryLogging=true queryLogging=true
;; ;;