From 40355c9442587be928e14820f1018dff06c70e90 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Thu, 15 Jun 2023 10:20:19 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B06426=20-=20Fix=20RenderAllUiBlocks=20tes?= =?UTF-8?q?t=20page=20not=20displaying?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/utils.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/utils.inc.php b/application/utils.inc.php index 0ce86f468..87e4f7dc0 100644 --- a/application/utils.inc.php +++ b/application/utils.inc.php @@ -2904,7 +2904,8 @@ HTML; if ($sClassNameFilter !== '' && strpos($sPHPClass, $sClassNameFilter) === false) { $bSkipped = true; } - else { + // For some PHP classes we don't have their file path as they are already in memory, so we never filter on their paths + elseif (utils::IsNotNullOrEmptyString($sPHPFile)) { $sPHPFile = self::LocalPath($sPHPFile); if ($sPHPFile !== false) { $sPHPFile = '/'.$sPHPFile; // for regex