# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. 582a583 > 584,603d584 < * Alias Workaround < */ < function alias_workaround($views_plugin_style, $lat_lon) { < $ok=0; < foreach ($views_plugin_style->view->field as $field) { < if ($lat_lon == $field->field_alias) { < $ok = 1; < break; < } < } < if ($ok == 0) { < foreach ($views_plugin_style->view->field as $field) { < if (substr_compare($lat_lon, $field->real_field, strlen($lat_lon)-strlen($field->real_field), strlen($field->real_field)) === 0) { < return $field->field_alias; < } < } < } < return $lat_lon; < } < /** 619,622d599 < < foreach ($latitudes as $key => $value) { < $latitudes[$key]=alias_workaround($views_plugin_style, $value); < } 624d600 < $longitude=alias_workaround($views_plugin_style, $longitude);