From 9db246eb4266ea0a3feaa33377df4d89f2f35861 Mon Sep 17 00:00:00 2001 From: Eric Date: Fri, 22 Jan 2021 11:47:04 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B03438=20-=20Setup:=20Ignore=20vendor=20fo?= =?UTF-8?q?lder=20during=20setup=20extensions=20scan?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/modulediscovery.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/modulediscovery.class.inc.php b/setup/modulediscovery.class.inc.php index 894b53aec..50122c977 100644 --- a/setup/modulediscovery.class.inc.php +++ b/setup/modulediscovery.class.inc.php @@ -437,7 +437,7 @@ class ModuleDiscovery $aMatches = array(); if (is_dir($sDirectory.'/'.$sFile)) { - if (($sFile != '.') && ($sFile != '..') && ($sFile != '.svn')) + if (($sFile != '.') && ($sFile != '..') && ($sFile != '.svn') && ($sFile != 'vendor')) { self::ListModuleFiles($sRelDir.'/'.$sFile, $sRootDir); }