From 1fb6b77bc6d97888288500f954a3cec9c6083af4 Mon Sep 17 00:00:00 2001 From: markjcrane Date: Wed, 14 Jan 2026 12:38:25 -0700 Subject: [PATCH] Set email template_enable to default to true --- core/email_templates/app_defaults.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/email_templates/app_defaults.php b/core/email_templates/app_defaults.php index 12a05dc81f..cd1bce0235 100644 --- a/core/email_templates/app_defaults.php +++ b/core/email_templates/app_defaults.php @@ -615,6 +615,10 @@ unset($array); } + //set the default value of template_enabled to true + $sql = "update v_email_templates set template_enabled = 'true' where template_enabled is null"; + $database->execute($sql); + unset($sql); } ?>