diff --git a/webform.install b/webform.install
index 45fa64f..8f5b086 100644
--- a/webform.install
+++ b/webform.install
@@ -434,7 +434,9 @@ function webform_install() {
     );
     $webform_type = node_type_set_defaults($webform_type);
     node_type_save($webform_type);
-    node_add_body_field($webform_type);
+    if (variable_get('webform_install_add_body_field', TRUE)) {
+      node_add_body_field($webform_type);
+    }
   }
 }
 
