From 13c81084a5fc5190ac781406f179f7ccde7e4e08 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 23 May 2013 00:44:22 -0400 Subject: [PATCH] CRM-12683 - Fix URL path for the "vendor" directory ---------------------------------------- * CRM-12683: Load extensions in "vendor" directory http://issues.civicrm.org/jira/browse/CRM-12683 --- CRM/Extension/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Extension/System.php b/CRM/Extension/System.php index 6abee986f5..d0de0c0240 100644 --- a/CRM/Extension/System.php +++ b/CRM/Extension/System.php @@ -108,7 +108,7 @@ class CRM_Extension_System { if (NULL !== $cmsRootPath) { $vendorPath = $cmsRootPath . DIRECTORY_SEPARATOR . 'vendor'; if (is_dir($vendorPath)) { - $containers['cmsvendor'] = new CRM_Extension_Container_Basic($vendorPath, $config->userFrameworkBaseURL, $this->getCache(), 'cmsvendor'); + $containers['cmsvendor'] = new CRM_Extension_Container_Basic($vendorPath, $config->userFrameworkBaseURL . DIRECTORY_SEPARATOR . 'vendor', $this->getCache(), 'cmsvendor'); } } -- 2.25.1