? 6-update.diff
? README-254328-5.patch
? clone-own-231997-6x-14.patch
? save-edit-254398-1.patch
Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/node_clone/README.txt,v
retrieving revision 1.10
diff -u -p -r1.10 README.txt
--- README.txt	3 May 2008 22:04:56 -0000	1.10
+++ README.txt	4 May 2008 00:20:46 -0000
@@ -34,8 +34,8 @@ This module seems to work with common no
 nodes that have any sort of image or file  attachments.   In all cases, but
 especially if you are using a complex (CCK) or custom node type, you should
 evaluate this module on a test site with a copy of your database before
-attempting to use it on a live site. On the setting page you may choose
-node typers to be omitted from the cloning mechanism - no users will be able
+attempting to use it on a live site. On the settings page you may choose
+node types to be omitted from the cloning mechanism - no users will be able
 to try to clone a node of an omitted type.
 
 To install this module, copy the folder with all the files to the
Index: clone.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/node_clone/clone.install,v
retrieving revision 1.1
diff -u -p -r1.1 clone.install
--- clone.install	3 May 2008 21:50:58 -0000	1.1
+++ clone.install	4 May 2008 00:20:46 -0000
@@ -9,6 +9,7 @@ function clone_uninstall() {
   
   variable_del('clone_method');
   variable_del('clone_omitted');
+  variable_del('clone_nodes_without_confirm');
   $types = node_get_types('names');
   foreach ($types as $type => $name) {
     variable_del('clone_reset_'. $type);
Index: clone.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/node_clone/clone.pages.inc,v
retrieving revision 1.1
diff -u -p -r1.1 clone.pages.inc
--- clone.pages.inc	3 May 2008 21:50:58 -0000	1.1
+++ clone.pages.inc	4 May 2008 00:20:46 -0000
@@ -17,7 +17,14 @@ function clone_settings() {
     '#options' => array('prepopulate' => t('Pre-populate the node form fields'), 'save-edit' => t('Save as a new node then edit')),
     '#default_value' => variable_get('clone_method', 'prepopulate'),
   );
-
+  $form['basic']['clone_nodes_without_confirm'] = array(
+    '#type' => 'radios',
+    '#title' => t('Confirmation mode when using the "Save as a new node then edit" method'),
+    '#default_value' => (int)variable_get('clone_nodes_without_confirm', 0),
+    '#options' => array(t('Require confirmation (recommended)'), t('Bypass confirmation')),
+    '#description' => t('A new node may be saved immediately upon clicking the "clone" tab when viewing a node, bypassing the normal confirmation form.'),
+  );
+  
   $form['publishing'] = array(
     '#type' => 'fieldset',
     '#title' => t('Should the publishing options ( e.g. published, promoted, etc) be reset to the defaults?'),
