diff --git a/includes/webform.submissions.inc b/includes/webform.submissions.inc
index 1a159e9..910f160 100644
--- a/includes/webform.submissions.inc
+++ b/includes/webform.submissions.inc
@@ -330,6 +330,9 @@ function webform_submission_send_mail($node, $submission, $emails = NULL) {
 function webform_submission_delete_form($form, $form_state, $node, $submission) {
   webform_set_breadcrumb($node, $submission);
 
+  // Set the correct page title.
+  drupal_set_title(webform_submission_title($node, $submission));
+
   // Keep the NID and SID in the same location as the webform_client_form().
   // This helps mollom identify the same fields when deleting a submission.
   $form['#tree'] = TRUE;
@@ -385,6 +388,9 @@ function webform_submission_page($node, $submission, $format) {
   // Render the admin UI breadcrumb.
   webform_set_breadcrumb($node, $submission);
 
+  // Set the correct page title.
+  drupal_set_title(webform_submission_title($node, $submission));
+
   if ($format == 'form') {
     $output = drupal_get_form('webform_client_form_' . $node->nid, $node, $submission);
   }
