diff --git a/modules/blogapi.module b/modules/blogapi.module
index bb187084e606928e46a7b8b3afaaf28842477ca6..3498b9b99668d636375be0f9c280e75cefe53fcb 100644
--- a/modules/blogapi.module
+++ b/modules/blogapi.module
@@ -564,7 +564,7 @@ function blogapi_settings() {
   $defaults = isset($node_types['blog']) ? array('blog' => 1) : array();
   $form['blogapi_node_types'] = array(
     '#type' => 'checkboxes', '#title' => t('Blog types'), '#required' => TRUE,
-    '#default_value' => array_keys(variable_get('blogapi_node_types', $defaults), 1), '#options' => $node_types,
+    '#default_value' => variable_get('blogapi_node_types', $defaults), '#options' => $node_types,
     '#description' => t('Select the content types for which you wish to enable posting via blogapi. Each type will appear as a different "blog" in the client application (if supported).')
   );
 
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module
index bb187084e606928e46a7b8b3afaaf28842477ca6..3498b9b99668d636375be0f9c280e75cefe53fcb 100644
--- a/modules/blogapi/blogapi.module
+++ b/modules/blogapi/blogapi.module
@@ -564,7 +564,7 @@ function blogapi_settings() {
   $defaults = isset($node_types['blog']) ? array('blog' => 1) : array();
   $form['blogapi_node_types'] = array(
     '#type' => 'checkboxes', '#title' => t('Blog types'), '#required' => TRUE,
-    '#default_value' => array_keys(variable_get('blogapi_node_types', $defaults), 1), '#options' => $node_types,
+    '#default_value' => variable_get('blogapi_node_types', $defaults), '#options' => $node_types,
     '#description' => t('Select the content types for which you wish to enable posting via blogapi. Each type will appear as a different "blog" in the client application (if supported).')
   );