Bugs item #721658, was opened at 2003-04-15 13:32
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=403611&aid=721658&group_id=31885
Category: None
Group: 7.4pre1
Status: Open
Resolution: None
Priority: 5
Submitted By: Venkat (venkey)
Assigned to: Nobody/Anonymous (nobody)
Summary: Menu class goes into infinite loop on Windows
Initial Comment:
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 = "";
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=403611&aid=721658&group_id=31885
|