ZF-9806: Config.php generates wrong php.includepath entry in .zf.ini
Description
/Zend/Tool/Framework/System/Provider/Config.php
Generates a .zf.ini with wrong entry:
php.includepath
it should be :Bugfix: php.include_path
Howto fix:
goto line 88:
$config = array(
'php' => array(
'includepath' => get_include_path(),
),
);
and change 'includepath' -> 'include_path'
Comments
Posted by Konr Ness (konrness) on 2010-07-26T11:39:25.000+0000
Confirmed this is still a problem in at revision 22686.
/Zend/Tool/Framework/System/Provider/Config.php sets the include path config key to "includepath".
/bin/zf.php (line 518) writes it as: php.include_path
/bin/zf.php (line 322) is calling ini_set on all config options in the php key, and the proper way to set the include path via ini_set is: ini_set('include_path', $path);
Posted by Ralph Schindler (ralph) on 2010-10-21T08:50:07.000+0000
Fixed in r23205 in trunk and r23206 in release branch 1.11