From 00c6befb702169e2327b6be4a706613e465c9807 Mon Sep 17 00:00:00 2001 From: frytimo Date: Thu, 27 Mar 2025 16:33:36 -0300 Subject: [PATCH] Add missing file path when cache miss in auto_loader (#7339) --- resources/classes/auto_loader.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/classes/auto_loader.php b/resources/classes/auto_loader.php index ac91e039d8..fdd2fa1a75 100644 --- a/resources/classes/auto_loader.php +++ b/resources/classes/auto_loader.php @@ -134,6 +134,7 @@ class auto_loader { $search_path[] = glob($project_path . "/*/*/resources/interfaces/" . $class_name . ".php"); $search_path[] = glob($project_path . "/*/*/resources/traits/" . $class_name . ".php"); $search_path[] = glob($project_path . "/*/*/resources/classes/" . $class_name . ".php"); + $search_path[] = glob($project_path . "/core/authentication/resources/classes/plugins/" . $class_name . ".php"); //collapse all entries to only the matched entry $matches = array_filter($search_path);