From e9beddc80ef2c33a9797f727fffa396d6ca938c7 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Wed, 11 Jan 2012 20:57:54 +0100 Subject: [PATCH] Fix include path bugs --- lib/classes/Bridge/Api/Youtube.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/classes/Bridge/Api/Youtube.class.php b/lib/classes/Bridge/Api/Youtube.class.php index 4d9c9831ec..e715d29178 100644 --- a/lib/classes/Bridge/Api/Youtube.class.php +++ b/lib/classes/Bridge/Api/Youtube.class.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -$new_include_path = __DIR__ . '/../../../../vendor/alchemy/gdata/' . PATH_SEPARATOR . get_include_path(); +$new_include_path = __DIR__ . '/../../../vendor/gdata/' . PATH_SEPARATOR . get_include_path(); set_include_path($new_include_path); require_once('Zend/Loader.php');