The filter issue has been cleared up, as you can probably tell from
my massive commit last night. Both of the protagonists of the
discussion appear to be sufficiently mollified ;-), so its time to
get back on track with the 5.2 release cycle. If all goes well this
Thursday RC5 will be released and then followed by final release a
week later.
Ilia Alshanetsky
Hi all,
We need to fix http://bugs.php.net/bug.php?id=38989 before the release.
Some change has broken path handling on windows recently.
Edin
Ilia Alshanetsky wrote:
The filter issue has been cleared up, as you can probably tell from my
massive commit last night. Both of the protagonists of the discussion
appear to be sufficiently mollified ;-), so its time to get back on
track with the 5.2 release cycle. If all goes well this Thursday RC5
will be released and then followed by final release a week later.Ilia Alshanetsky
Hello,
Hi all,
We need to fix http://bugs.php.net/bug.php?id=38989 before the release.
Some change has broken path handling on windows recently.
tsrm_virtual_cwd.c 1.74.2.9.2.3 is the last working version
(http://cvs.php.net/viewvc.cgi/TSRM/tsrm_virtual_cwd.c?revision=1.74.2.9.2.3&view=markup&pathrev=PHP_5_2)
There is a lot of changes, but as far as I can see, IS_ABSOLUTE_PATH
is broken. It is used in expand_filepath, for example:
"\tmp\test.txt" returns:
before: C:\tmp\test.txt
after: C:\phpbuilds\php_5_2\tmp\test.txt
--Pierre
Hello,
Hello,
Hi all,
We need to fix http://bugs.php.net/bug.php?id=38989 before the release.
Some change has broken path handling on windows recently.tsrm_virtual_cwd.c 1.74.2.9.2.3 is the last working version
(http://cvs.php.net/viewvc.cgi/TSRM/tsrm_virtual_cwd.c?revision=1.74.2.9.2.3&view=markup&pathrev=PHP_5_2)There is a lot of changes, but as far as I can see, IS_ABSOLUTE_PATH
is broken. It is used in expand_filepath, for example:
Please find a possible fix as attachment, I did not test it
intensivelly but it seems to work. Edin, can you take a look at it?
It is actually a wonder that this kind of paths worked before Dmitry's commit :)
--Pierre