From fab4fb3ea2a08dc70395ddd06d884a4bedc2feec Mon Sep 17 00:00:00 2001 From: ekes Date: Tue, 24 Feb 2015 20:27:10 +0100 Subject: [PATCH] Correct view URL field name. --- radar.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radar.inc.php b/radar.inc.php index ad4ce23..b4fc544 100644 --- a/radar.inc.php +++ b/radar.inc.php @@ -96,8 +96,8 @@ function _radar_field_collect_subfields(&$fields) { */ function _radar_field_name_mapping($fields) { // Replace the nice entity names with (exposed) internal field names. - $nice_names = array('url', 'date', 'group', 'location'); - $ugly_names = array('view_url', 'date_time', 'og_group_ref', 'offline'); + $nice_names = array('date', 'group', 'location'); + $ugly_names = array('date_time', 'og_group_ref', 'offline'); return str_replace($nice_names, $ugly_names, $fields); }