You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default Yaml decoder (provided by Zend_Config_Yaml) is too naive and removes mistakes color codes for comments. So this is not possible config.yaml:
For those who wants to fix it manually it Open Zend\Config\Yaml.php and replace the regexp in line 295 and 323 with the following:
(?!#.+")(#.+)
This will strip away #ff00aa but not "#ff00aa".
A better solution would be to either require a proper Yaml paser or at least to make a note of it in the README file or output it when running php configurator.php
The text was updated successfully, but these errors were encountered:
The default Yaml decoder (provided by Zend_Config_Yaml) is too naive and removes mistakes color codes for comments. So this is not possible
config.yaml
:Value will simply be
false
For those who wants to fix it manually it Open Zend\Config\Yaml.php and replace the regexp in line 295 and 323 with the following:
This will strip away
#ff00aa
but not"#ff00aa"
.A better solution would be to either require a proper Yaml paser or at least to make a note of it in the README file or output it when running
php configurator.php
The text was updated successfully, but these errors were encountered: