From: Steve Sutton Date: Tue, 19 Aug 2014 14:29:06 +0000 (-0400) Subject: correction for add your event form. X-Git-Tag: V1.0^2~33 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=1cd4fd7c5a9236f71797244f1801a0a12264d417;p=web%2FKeweenaw.git correction for add your event form. add in the id's needed for the map it feature. --- 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',