Skip to content

Commit 8d41336

Browse files
Update MerlinAU.sh
1 parent 7361704 commit 8d41336

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MerlinAU.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6566,7 +6566,7 @@ _Toggle_FW_UpdateEmailNotifications_()
65666566
{
65676567
local emailNotificationEnabled emailNotificationNewStateStr
65686568

6569-
if [ $sendEMailNotificationsFlag = "ENABLED" ]
6569+
if [ "$sendEMailNotificationsFlag" = "ENABLED" ]
65706570
then
65716571
emailNotificationEnabled="ENABLED"
65726572
emailNotificationNewStateStr="${REDct}DISABLE${NOct}"
@@ -6581,7 +6581,7 @@ _Toggle_FW_UpdateEmailNotifications_()
65816581
return 1
65826582
fi
65836583

6584-
if [ $emailNotificationEnabled = "ENABLED" ];
6584+
if [ "$emailNotificationEnabled" = "ENABLED" ];
65856585
then
65866586
sendEMailNotificationsFlag="DISABLED"
65876587
emailNotificationNewStateStr="${REDct}DISABLED${NOct}"
@@ -9318,14 +9318,14 @@ _ShowAdvancedOptionsMenu_()
93189318
else
93199319
printf "\n ${GRNct}em${NOct}. Toggle F/W Email Notifications"
93209320
fi
9321-
if [ $sendEMailNotificationsFlag = "ENABLED" ]
9321+
if [ "$sendEMailNotificationsFlag" = "ENABLED" ]
93229322
then
93239323
printf "\n${padStr}[Currently ${GRNct}ENABLED${NOct}]\n"
93249324
else
93259325
printf "\n${padStr}[Currently ${REDct}DISABLED${NOct}]\n"
93269326
fi
93279327

9328-
if [ $sendEMailNotificationsFlag = "ENABLED" ]
9328+
if [ "$sendEMailNotificationsFlag" = "ENABLED" ]
93299329
then
93309330
# Format Types: "HTML" or "Plain Text" #
93319331
printf "\n ${GRNct}ef${NOct}. Set Email Format Type"

0 commit comments

Comments
 (0)