Fix email template path (#7763)

This commit is contained in:
Alex
2026-02-27 11:49:43 -07:00
committed by GitHub
parent 31b5bea78e
commit 6d5c7f0cd5

View File

@@ -119,7 +119,7 @@ if ($domains_processed == 1) {
}
//insert default password reset email template
if (file_exists(dirname(__DIR__, 2).'/app/email_templates')) {
if (file_exists(dirname(__DIR__, 2).'/core/email_templates')) {
//add the email templates to the database
$sql = "select count(*) as num_rows from v_email_templates ";