diff --git a/views_bulk_operations.module b/views_bulk_operations.module
index b25b661..efa87ad 100644
--- a/views_bulk_operations.module
+++ b/views_bulk_operations.module
@@ -595,14 +595,19 @@ function views_bulk_operations_confirm_form($form, &$form_state, $view, $output)
   $operation = $form_state['operation'];
   $rows = $form_state['selection'];
   $query = drupal_get_query_parameters($_GET, array('q'));
+  $title = t('Are you sure you want to perform %operation on the selected items?', array('%operation' => $operation->label()));
   $form = confirm_form($form,
-    t('Are you sure you want to perform %operation on the selected items?', array('%operation' => $operation->label())),
+    $title,
     array('path' => $view->get_url(), 'query' => $query),
     theme('views_bulk_operations_confirmation', array('rows' => $rows, 'vbo' => $vbo, 'operation' => $operation, 'select_all_pages' => $form_state['select_all_pages']))
   );
   // Add VBO's submit handler to the Confirm button added by config_form().
   $form['actions']['submit']['#submit'] = array('views_bulk_operations_form_submit');
 
+  // The title set in confirm_form() is clobbered by Views to be the title of
+  // the View. Reset the title of the View to be the desired title.
+  $view->set_title($title);
+
   return $form;
 }
 
