From abbbc8d984def7b98a500ad6addf8ba2568e44b9 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Tue, 29 Aug 2023 15:34:49 +0800 Subject: [PATCH] * Fix bug #37584. --- framework/base/router.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/base/router.class.php b/framework/base/router.class.php index 5fa817ae46..b9a49197b9 100644 --- a/framework/base/router.class.php +++ b/framework/base/router.class.php @@ -1549,7 +1549,7 @@ class baseRouter /* Check file is encode by ioncube. */ $isEncrypted = false; - if(strpos($file2Included, 'extension' . DS . $this->config->edition . DS) !== false) + if(strpos($file2Included, 'extension') !== false) { $fp = fopen($file2Included, 'r'); $line1 = fgets($fp);