Set email template_enable to default to true

This commit is contained in:
markjcrane
2026-01-14 12:38:25 -07:00
parent fc013c2109
commit 1fb6b77bc6

View File

@@ -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);
}
?>