From 1cd4fd7c5a9236f71797244f1801a0a12264d417 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 19 Aug 2014 10:29:06 -0400 Subject: [PATCH] correction for add your event form. add in the id's needed for the map it feature. --- Toolkit/Events/AddCommonEventForm.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Toolkit/Events/AddCommonEventForm.php b/Toolkit/Events/AddCommonEventForm.php index a31f5c2..4fc56f0 100644 --- a/Toolkit/Events/AddCommonEventForm.php +++ b/Toolkit/Events/AddCommonEventForm.php @@ -447,25 +447,29 @@ class Toolkit_Events_AddCommonEventForm 'type' => 'text', 'req' => false, 'name' => 'address', - 'display' => 'Address' + 'display' => 'Address', + 'opts' => array('id' => 'address') ); $e[] = array( 'type' => 'text', 'req' => true, 'name' => 'city', - 'display' => 'City' + 'display' => 'City', + 'opts' => array('id' => 'city') ); $e[] = array( 'type' => 'text', 'req' => false, 'name' => 'state', - 'display' => 'State' + 'display' => 'State', + 'opts' => array('id' => 'state') ); $e[] = array( 'type' => 'text', 'req' => false, 'name' => 'zip', - 'display' => 'ZIP' + 'display' => 'ZIP', + 'opts' => array('id' => 'zip') ); $e[] = array( 'type' => 'header', -- 2.17.1