Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Blocker
-
Resolution: Not an Issue
-
Affects Version/s: 0.8.0
-
Fix Version/s: 0.9.0
-
Component/s: Zend_Config
-
Labels:None
Description
We frequently use ! in passwords, for example this produces an error:
[foobar]
foo = bar!
This doesn't:
[foobar]
foo = bar
Zend_Config_Ini uses parse_ini_file behind the scenes. Looking at http://uk3.php.net/manual/en/function.parse-ini-file.php, I see that you could try using double quotes around "bar!".
However the manual page also says: "Characters {}|&~![()" must not be used anywhere in the key and have a special meaning in the value.".
Regards,
Rob...