From f00834f81ab41c9d39375635e5223f21cd0aebe0 Mon Sep 17 00:00:00 2001 From: gwoo Date: Mon, 28 Jan 2008 17:17:11 +0000 Subject: [PATCH] fixes #3608 vendorPaths in configure, git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6414 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/configure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/configure.php b/cake/libs/configure.php index be1488e4d..471b4f0bd 100644 --- a/cake/libs/configure.php +++ b/cake/libs/configure.php @@ -637,7 +637,7 @@ class Configure extends Object { $config = Cache::config('_cake_core_' , array_merge($cache, $settings)); } } - $_this->__buildPaths(compact('modelPaths', 'viewPaths', 'controllerPaths', 'helperPaths', 'componentPaths', 'behaviorPaths', 'pluginPaths')); + $_this->__buildPaths(compact('modelPaths', 'viewPaths', 'controllerPaths', 'helperPaths', 'componentPaths', 'behaviorPaths', 'pluginPaths', 'vendorPaths')); if (defined('BASE_URL')) { trigger_error('BASE_URL Deprecated: See Configure::write(\'App.baseUrl\', \'' . BASE_URL . '\'); in APP/config/core.php', E_USER_WARNING);