ZF-8840: enabling layout from cli generates extra quotes in config param
Description
generated in config: resources.layout.layoutPath = "APPLICATION_PATH "/layouts/scripts/""
I think it should be: resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
Comments
Posted by Bradley Holt (bradley.holt) on 2010-01-16T18:15:30.000+0000
I'm experiencing the same problem. The application does not seem to recognize the resources.layout.layoutPath value after enabling layout.
Steps to reproduce:
zf show version
Zend Framework Version: 1.10.0beta1
mkdir ZendToolBug
cd ZendToolBug
zf create project .
zf enable layout
cat application/configs/application.ini
... resources.layout.layoutPath = "APPLICATION_PATH "/layouts/scripts/"" ...
Expected result:
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
Actual result:
resources.layout.layoutPath = "APPLICATION_PATH "/layouts/scripts/""
Posted by Rob Allen (rob) on 2010-01-17T04:11:05.000+0000
Fixed on Trunk in r20349 and merged to release-1.10 branch as r20350
Posted by Bradley Holt (bradley.holt) on 2010-01-23T06:39:08.000+0000
This appears to be fixed for me in 1.10.0rc1.