Active
Project:
GMap Module
Version:
7.x-2.x-dev
Component:
gmap_plugin_style_gmapextended.inc
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Dec 2011 at 10:32 UTC
Updated:
16 Apr 2013 at 07:27 UTC
Similar to node/1255514 i got this warnings:
Notice: Undefined index: coordinates in template_preprocess_gmap_views_view_gmapextended() (Zeile 60 von sites/all/modules/gmap/gmap.views.inc).
Notice: Undefined index: city in template_preprocess_gmap_views_view_gmapextended() (Zeile 60 von sites/all/modules/gmap/gmap.views.inc).
The dirty fix for me was to check if $row[index] was set. On line 56 in gmap.views.inc i added:
if (!isset($row[$field])) {
$row[$field]='';
}
Comments
Comment #0.0
Rechi commentedSite details removed
Comment #1
johnvComment #2
podarokthis should be fixed for latest dev
Comment #2.0
podarokerror in code