Ver Fonte

ZF-9806
Fixed Config generator in Zend_Tool to write include_path out correctly in php section


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23205 44c647ce-9c0f-0410-b52a-842ac1e357ba

ralph há 15 anos atrás
pai
commit
d222211288
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      library/Zend/Tool/Framework/System/Provider/Config.php

+ 1 - 1
library/Zend/Tool/Framework/System/Provider/Config.php

@@ -87,7 +87,7 @@ class Zend_Tool_Framework_System_Provider_Config extends Zend_Tool_Framework_Pro
 
 
         $config = array(
         $config = array(
             'php' => array(
             'php' => array(
-                'includepath' => get_include_path(),
+                'include_path' => get_include_path(),
             ),
             ),
         );
         );
         $writer->write($filename, new Zend_Config($config));
         $writer->write($filename, new Zend_Config($config));