When clicking on a marker in map/nodes, the whole browser window turns white and nothing else happens. This is with code checked out from HEAD today, and viewing in FF2.

CommentFileSizeAuthor
#1 gmap_location_menu_patch.txt691 bytesmleicester

Comments

mleicester’s picture

Version: 6.x-1.x-dev » 6.x-1.0-beta5
Status: Active » Needs review
StatusFileSize
new691 bytes

I think I had the same problem. Strangely, Firefox chokes much more severely on this error than e.g. Safari. Line 80 reads:
$items['map/node/load/%node/%'] = ...

The infowindow JS call uses map/node/load/nid so the above menu item is never used (the path would need a component in position 4 to ever get matched). I think this line should be:
$items['map/node/load/%node'] = ...

After making the change don't forget to clear your menu cache at admin/settings/performance.

Patch attached too.

bdragon’s picture

Status: Needs review » Closed (duplicate)