From 6d5c7f0cd568add00427ff348fc6368aa5f093e6 Mon Sep 17 00:00:00 2001 From: Alex <40072887+alexdcrane@users.noreply.github.com> Date: Fri, 27 Feb 2026 11:49:43 -0700 Subject: [PATCH] Fix email template path (#7763) --- core/users/app_defaults.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/users/app_defaults.php b/core/users/app_defaults.php index 4c80cf2232..58874c8bf2 100644 --- a/core/users/app_defaults.php +++ b/core/users/app_defaults.php @@ -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 ";