Hi,
now that we have a publicly available alpha on Windows we get the first
feedback from Windows users. Within quite short time we got two bug
reports (#45992 #45994) about a change in the ini-parsing:
With <=5.2 we allow
include_path = "c:\foo\bar"
and treat the backslash as regular character. It's documented that way
in http://de.php.net/manual/en/configuration.php example #1 and in
php.ini-recommended.
This was caused by the changes in the ini parser which are important,
but in my opinion this is a break where we should try to find a way to
keep the behavior, especially as it was in the "recommended" php.ini
file and other places before.
Pierre completely disagrees, I guess he'll answer to this mail and tell
why :-)
Opinions from others, a good proposal to keep the improved ini handling
and making this work? :-)
johannes
This message was sent using IMP, the Internet Messaging Program.
hi,
Hi,
now that we have a publicly available alpha on Windows we get the first
feedback from Windows users. Within quite short time we got two bug
reports (#45992 #45994) about a change in the ini-parsing:With <=5.2 we allow
include_path = "c:\foo\bar"
Pierre completely disagrees, I guess he'll answer to this mail and tell
why :-)
Things is that we have expandable variables now (or env). I think that
having double quotes working like in php is a good and safe thing. It
could be too tricky (or pointless) to have to deal with two kind of
backslashes, depending on the context. Especially as (and Johannes
should have mentioned it in his mail) the fix is as easy than:
include_path=c:\foo\bar\
or
include_path="c:/foo/bar/"
Cheers,
Pierre