Fix a typo. In this case, the typo caused the f_noyes() invocation to

display a global instead of the passed-argument; however since the global
always has the same value as the passed argument, it made no difference in
the realtime operation.
This commit is contained in:
Devin Teske 2013-06-02 23:23:29 +00:00
parent e4cb6ac115
commit f8e121ed61
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=251277

View File

@ -253,7 +253,7 @@ dialog_menu_confirm_delete()
# If asked to delete only one variable, simply ask and return
if [ $# -eq 1 ]; then
f_noyes "$msg_are_you_sure_you_want_to_delete" "$delete_vars"
f_noyes "$msg_are_you_sure_you_want_to_delete" "$1"
return $?
fi
# Not reached unless requested to delete multiple variables