[Phplib-trackers] [ phplib-Bugs-488605 ] Menu.inc under PHP for Windows
Brought to you by:
nhruby,
richardarcher
|
From: <no...@so...> - 2001-12-03 21:59:07
|
Bugs item #488605, was opened at 2001-12-03 13:58 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=488605&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Menu.inc under PHP for Windows Initial Comment: In (menu.inc,v 1.3 2001/08/20): the setup() function in Menu.inc uses the php dirname () call, expecting Unix style slashes in dir names. This breaks the top level menu on a Windows system where forward slashes are used. I replaced: 298: $base = dirname($v); with: 298 : $base = dirname($v); 299+: $base = str_replace("\","/",$base); This fix cleared up the 'problem'. jesse ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=488605&group_id=31885 |