--- a/event.module	2008-08-24 20:43:05.000000000 -0700
+++ b/event.module	2008-09-05 21:21:42.000000000 -0700
@@ -1798,7 +1798,7 @@
  *
  * @ingroup event_support.
  * @param $curterm The current term id.
- * @param $autosubmit Adds 'onChange' form submit javascript command to control.
+ * @param $autosubmit Adds 'onchange' form submit javascript command to control.
  * @return A form with a dropdown event taxonomy term input control.
  */
 function _event_get_taxonomy_control($curterm = NULL, $autosubmit = TRUE) {
@@ -1815,7 +1815,7 @@
  *
  * @ingroup event_support.
  * @param $curterm The current term id.
- * @param $autosubmit Adds 'onChange' form submit javascript command to control.
+ * @param $autosubmit Adds 'onchange' form submit javascript command to control.
  * @return An array representing the form.
  */
 function event_taxonomy_filter_form($form_state, $curterm, $autosubmit) {
@@ -1851,7 +1851,7 @@
     '#options' => $items,
     '#description' => t('Select event terms to filter by'));
   if ($autosubmit) {
-    $form['event_term_select']['#attributes'] = array('onChange' => 'this.form.submit()');
+    $form['event_term_select']['#attributes'] = array('onchange' => 'this.form.submit()');
   }
 
   return $form;
@@ -1862,7 +1862,7 @@
  *
  * @ingroup event_support.
  * @param $curtype The current type id.
- * @param $autosubmit Adds 'onChange' form submit javascript command to control.
+ * @param $autosubmit Adds 'onchange' form submit javascript command to control.
  * @return A form with a dropdown event taxonomy term input control.
  */
 function _event_get_type_control($curtype = NULL, $autosubmit = TRUE) {
@@ -1879,7 +1879,7 @@
  *
  * @ingroup event_support.
  * @param $curtype The current type id.
- * @param $autosubmit Adds 'onChange' form submit javascript command to control.
+ * @param $autosubmit Adds 'onchange' form submit javascript command to control.
  * @return An array representing the form.
  */
 function event_type_filter_form($form_state, $curtype, $autosubmit) {
@@ -1898,7 +1898,7 @@
     '#options' => $items,
     '#description' => t('Select event type to filter by'));
   if ($autosubmit) {
-    $form['event_type_select']['#attributes'] = array('onChange' => 'this.form.submit()');
+    $form['event_type_select']['#attributes'] = array('onchange' => 'this.form.submit()');
   }
 
   return $form;
