correction for add your event form.
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 19 Aug 2014 14:29:06 +0000 (10:29 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 19 Aug 2014 14:29:06 +0000 (10:29 -0400)
add in the id's needed for the map it feature.

Toolkit/Events/AddCommonEventForm.php

index a31f5c2..4fc56f0 100644 (file)
@@ -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',