Skip to content
Snippets Groups Projects
Commit 75a026ff authored by DuaelFr's avatar DuaelFr Committed by http://druler.com
Browse files

Issue #1927492 by DuaelFr, podarok: Fixed Notice undefined index markermode in...

Issue #1927492 by DuaelFr, podarok: Fixed Notice undefined index markermode in gmap_plugin_style_gmap().inc.
parent fd0bb84b
No related branches found
No related tags found
No related merge requests found
...@@ -270,7 +270,7 @@ class gmap_plugin_style_gmap extends views_plugin_style { ...@@ -270,7 +270,7 @@ class gmap_plugin_style_gmap extends views_plugin_style {
if ($this->options['enablermt']) { if ($this->options['enablermt']) {
$marker['rmt'] = $row->{$rmt_field}; $marker['rmt'] = $row->{$rmt_field};
} }
else { elseif (!empty($defaults['markermode'])) {
// Marker mode: popup. // Marker mode: popup.
if ($defaults['markermode'] == 1) { if ($defaults['markermode'] == 1) {
$marker['text'] = $this->row_plugin->render($row); $marker['text'] = $this->row_plugin->render($row);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment