From 943ac4f8826ab0983f780961c4fa756e67518757 Mon Sep 17 00:00:00 2001 From: Robert Rollins Date: Tue, 8 Sep 2015 12:42:02 -0700 Subject: [PATCH] Issue #2564897: Reverted the patch for this issue. I was very sleepy when I applied this patch, and didn't think through what it was doing. The user who submitted it was actually just using Address Field wrong. --- includes/date_ical_plugin_row_ical_entity.inc | 3 --- 1 file changed, 3 deletions(-) diff --git a/includes/date_ical_plugin_row_ical_entity.inc b/includes/date_ical_plugin_row_ical_entity.inc index bc960ca..6774041 100644 --- a/includes/date_ical_plugin_row_ical_entity.inc +++ b/includes/date_ical_plugin_row_ical_entity.inc @@ -253,9 +253,6 @@ class date_ical_plugin_row_ical_entity extends views_plugin_row { } elseif ($location_info['type'] == 'addressfield') { $locations = array(); - // Concatenate street and house number - $location_field['thoroughfare'] = implode(' ', array($location_field['thoroughfare'], $location_field['premise'])); - unset($location_field['premise']); // Get full country name if (!empty($location_field['country'])) { require_once DRUPAL_ROOT . '/includes/locale.inc'; -- GitLab