diff --git a/clone.module b/clone.module
index 81eef6e..a686da1 100644
--- a/clone.module
+++ b/clone.module
@@ -282,3 +282,14 @@ function clone_action_clone_form($context) {
 function clone_action_clone_submit($form, $form_state) {
   return array('clone_context' => $form_state['values']['clone_context']);
 }
+
+/**
+* Implements hook_menu_local_tasks_alter
+*/
+function clone_menu_local_tasks_alter(&$data, $router_item, $root_path) {
+  // Remove tabs from node clone form - these are confusing as they refer to
+  // the the original node.
+  if ($root_path == 'node/%/clone/%') {
+    $data['tabs'][0]['output'] = array();
+  }
+}
