Menu class goes into infinite loop on Windows
Brought to you by:
nhruby,
richardarcher
Menu.inc in release "phplib-7.4-pre2" , function
"normalize_pos", line 216 has something like this
if ($m == "/") {
$m = "";
This causes a infinite loop on windows, on this
while(strlen($m)) { ...
}
Replaing the "if" with the code below appears to solve the
problem.
if (($m == "/") || ($m == "\\")) {
$m = "";