Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions MerlinAU.asp
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ function ToggleEmailDependents (isEmailNotifyChecked)
}

/**----------------------------------------**/
/** Modified by Martinski W. [2025-Mar-01] **/
/** Modified by Martinski W. [2025-Mar-30] **/
/**----------------------------------------**/
function SetUpEmailNotificationFields()
{
Expand All @@ -1287,7 +1287,9 @@ function SetUpEmailNotificationFields()
// If not yet set show a blank field instead of 'TBD' //
if (secondaryEmail)
{
if (custom_settings.FW_New_Update_EMail_CC_Address === 'TBD')
if (custom_settings.FW_New_Update_EMail_CC_Address === null ||
custom_settings.FW_New_Update_EMail_CC_Address === 'TBD' ||
typeof custom_settings.FW_New_Update_EMail_CC_Address === 'undefined')
{ secondaryEmail.value = ''; }
else
{ secondaryEmail.value = custom_settings.FW_New_Update_EMail_CC_Address; }
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
1.4.0
25033001
25033020