From d43b616060673ff50933311b813bf93fd6e8d96e Mon Sep 17 00:00:00 2001 From: Rob Allen Date: Sun, 16 Oct 2011 20:14:18 +0100 Subject: [PATCH] add library to the include path, so we can put ZF2's Zend folder directly in library --- public/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/public/index.php b/public/index.php index edf3990..5c4778d 100644 --- a/public/index.php +++ b/public/index.php @@ -5,6 +5,7 @@ defined('APPLICATION_ENV') // Ensure ZF is on the include path set_include_path(implode(PATH_SEPARATOR, array( + realpath(__DIR__ . '/../library'), realpath(__DIR__ . '/../library/ZendFramework/library'), get_include_path(), ))); -- 1.7.10.4