From 39109d70f8ba21824f31e1183b18a889d3cfe01a Mon Sep 17 00:00:00 2001
From: Brandon Bergren <bdragon@rtk0.net>
Date: Thu, 27 Jan 2011 06:48:45 +0000
Subject: [PATCH] #941170 reported by pmp6nl: More robust checks to avoid
 trying to look up a null property.

---
 gmap_plugin_style_gmap.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gmap_plugin_style_gmap.inc b/gmap_plugin_style_gmap.inc
index 9989499..306d538 100644
--- a/gmap_plugin_style_gmap.inc
+++ b/gmap_plugin_style_gmap.inc
@@ -196,8 +196,8 @@ class gmap_plugin_style_gmap extends views_plugin_style {
           }
 
           $tooltip = "";
-          if ($this->options['tooltipenabled'] && $row->$tooltip_field) {
-            $tooltip = $row->$tooltip_field;
+          if ($this->options['tooltipenabled'] && !empty($tooltip_field) && !empty($row->{$tooltip_field})) {
+            $tooltip = $row->{$tooltip_field};
           }
 
           $marker = array(
-- 
GitLab