That looks redundant to me. Can you verify that your include path actually contains the same path twice?
-- Hector On Mon, Mar 1, 2010 at 8:07 AM, Ryan Lange <[email protected]> wrote: > When you create a project with Zend_Tool, it appears to add library/ to the > include path twice; once in application/configs/application.ini and again in > public/index.php. > > ========== > application/configs/application.ini > ========== > includePaths[] = APPLICATION_PATH "/../library" > > > ========== > public/index.php > ========== > set_include_path( implode( PATH_SEPARATOR, array( > realpath( APPLICATION_PATH . '/../library' ), > get_include_path(), > ) ) ); > > > Am I correct in assuming that this is simply redundant? >
