diff --git a/ctools_plugin_example/plugins/content_types/no_context_content_type.inc b/ctools_plugin_example/plugins/content_types/no_context_content_type.inc
index 2141c21..8b73408 100644
--- a/ctools_plugin_example/plugins/content_types/no_context_content_type.inc
+++ b/ctools_plugin_example/plugins/content_types/no_context_content_type.inc
@@ -109,7 +109,7 @@ function no_context_content_type_edit_form($form, &$form_state) {
   return $form;
 }
 
-function no_context_content_type_edit_form_submit(&$form, &$form_state) {
+function no_context_content_type_edit_form_submit($form, &$form_state) {
   foreach (array('item1', 'item2') as $key) {
     $form_state['conf'][$key] = $form_state['values'][$key];
   }
diff --git a/ctools_plugin_example/plugins/content_types/relcontext_content_type.inc b/ctools_plugin_example/plugins/content_types/relcontext_content_type.inc
index b0742e0..95948ad 100644
--- a/ctools_plugin_example/plugins/content_types/relcontext_content_type.inc
+++ b/ctools_plugin_example/plugins/content_types/relcontext_content_type.inc
@@ -79,7 +79,7 @@ function relcontext_content_type_render($subtype, $conf, $args, $context) {
  * This example just returns a form.
  *
  */
-function relcontext_edit_form(&$form, &$form_state) {
+function relcontext_edit_form($form, &$form_state) {
   $conf = $form_state['conf'];
 
   $form['config_item_1'] = array(
@@ -94,7 +94,7 @@ function relcontext_edit_form(&$form, &$form_state) {
   return $form;
 }
 
-function relcontext_edit_form_submit(&$form, &$form_state) {
+function relcontext_edit_form_submit($form, &$form_state) {
   foreach (element_children($form) as $key) {
     if (!empty($form_state['values'][$key])) {
       $form_state['conf'][$key] = $form_state['values'][$key];
diff --git a/ctools_plugin_example/plugins/content_types/simplecontext_content_type.inc b/ctools_plugin_example/plugins/content_types/simplecontext_content_type.inc
index 82291d0..a308683 100644
--- a/ctools_plugin_example/plugins/content_types/simplecontext_content_type.inc
+++ b/ctools_plugin_example/plugins/content_types/simplecontext_content_type.inc
@@ -105,7 +105,7 @@ function simplecontext_content_type_render($subtype, $conf, $args, $context) {
  * This example just returns a form.
  *
  */
-function simplecontext_content_type_edit_form(&$form, &$form_state) {
+function simplecontext_content_type_edit_form($form, &$form_state) {
   $conf = $form_state['conf'];
   $form['config_item_1'] = array(
     '#type' => 'textfield',
@@ -120,10 +120,10 @@ function simplecontext_content_type_edit_form(&$form, &$form_state) {
   return $form;
 }
 
-function simplecontext_content_type_edit_form_submit(&$form, &$form_state) {
+function simplecontext_content_type_edit_form_submit($form, &$form_state) {
   foreach (element_children($form) as $key) {
     if (!empty($form_state['values'][$key])) {
       $form_state['conf'][$key] = $form_state['values'][$key];
     }
   }
-}
\ No newline at end of file
+}
