What steps will reproduce the problem?
1. Testing script by apache on win32.
There is typo in the line:
784: if (!substr ($_SERVER['SCRIPT_FILENAME'], 0, 1) == '/') {
this condition will fail ever when is first character is '/';
I think it must be something like
784: if (substr ($_SERVER['SCRIPT_FILENAME'], 0, 1) != '/') {
Original issue reported on code.google.com by mega...@gmail.com on 14 Feb 2011 at 9:11
Original issue reported on code.google.com by
mega...@gmail.com
on 14 Feb 2011 at 9:11