Changed phing include path to fit the checked out tree from phing svn (thx @jtanguy).

This commit is contained in:
William DURAND 2011-01-29 23:31:24 +01:00
commit cd6dedfd97

View file

@ -12,7 +12,7 @@ class PropelBundle extends Bundle
require_once $this->container->getParameter('propel.path').'/runtime/lib/Propel.php';
if (0 === strncasecmp(PHP_SAPI, 'cli', 3)) {
set_include_path($this->container->getParameter('propel.phing_path').'/classes'.PATH_SEPARATOR.get_include_path());
set_include_path($this->container->getParameter('propel.phing_path').PATH_SEPARATOR.get_include_path());
}
$this->container->get('propel');