Index: simplenews.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplenews/simplenews.admin.inc,v
retrieving revision 1.5.2.42
diff -u -p -r1.5.2.42 simplenews.admin.inc
--- simplenews.admin.inc	3 Jan 2009 11:10:53 -0000	1.5.2.42
+++ simplenews.admin.inc	9 Jan 2009 15:45:45 -0000
@@ -736,13 +736,12 @@ function simplenews_admin_settings(&$for
   $address_default = variable_get('site_mail', ini_get('sendmail_from'));
   $form = array();
 
-  $vocabulary = taxonomy_vocabulary_load(variable_get('simplenews_vid', ''));
   $form['simplenews_general_settings']['simplenews_content_types'] = array(
     '#type' => 'checkboxes',
     '#title' => t('Content types'),
     '#required' => TRUE,
     '#options' => array_map('check_plain', node_get_types('names')),
-    '#default_value' => isset($vocabulary) ? $vocabulary->nodes : array(),
+    '#default_value' => variable_get('simplenews_content_types', array('simplenews' => 'simplenews')),
     '#description' => t('Content types to be used as newsletter.'),
   );
 
