--- activitystream.module-dist	2008-08-16 14:09:11.000000000 -0400
+++ activitystream.module	2008-09-02 00:49:20.000000000 -0400
@@ -352,7 +352,26 @@
     '#default_value' => variable_get('activitystream_title', 'Activity Stream'),
     '#description' => t('The title of the Activiy Stream in blocks and User Profiles.'),
   );
-  
+
+  $form['activitystream_workflow'] = array(
+    '#type' => 'fieldset',
+    '#title' => t('Workflow settings'),
+    '#collapsible' => TRUE,
+    '#collapsed' => FALSE,
+  );
+  $form['activitystream_workflow']['node_options_activitystream'] = array(
+		'#type' => 'checkboxes',
+    '#title' => t('Default options'),
+    '#default_value' => variable_get('node_options_activitystream', array('status')),
+    '#options' => array(
+      'status' => t('Published'),
+      'promote' => t('Promoted to front page'),
+      'sticky' => t('Sticky at top of lists'),
+    ),
+    '#description' => t('Default publishing options for Activity Stream content.'),
+  );
+
+  $form['array_filter'] = array('#type' => 'hidden');
   return system_settings_form($form);
 }
 
