diff --git a/views/workbench_edited.view.inc b/views/workbench_edited.view.inc
index a5871c2..61168ad 100644
--- a/views/workbench_edited.view.inc
+++ b/views/workbench_edited.view.inc
@@ -17,7 +17,7 @@ $view->disabled = FALSE; /* Edit this to true to make a default view disabled in
 
 /* Display: Defaults */
 $handler = $view->new_display('default', 'Defaults', 'default');
-$handler->display->display_options['title'] = 'Content I\'ve Edited';
+$handler->display->display_options['title'] = 'My Edits';
 $handler->display->display_options['use_more_always'] = TRUE;
 $handler->display->display_options['use_more_text'] = 'view all';
 $handler->display->display_options['group_by'] = TRUE;
@@ -269,7 +269,7 @@ $handler->display->display_options['filters']['status']['expose']['remember'] =
 $handler = $view->new_display('page', 'Page', 'page_1');
 $handler->display->display_options['path'] = 'admin/workbench/content/edited';
 $handler->display->display_options['menu']['type'] = 'tab';
-$handler->display->display_options['menu']['title'] = 'Content I\'ve Edited';
+$handler->display->display_options['menu']['title'] = 'My Edits';
 $handler->display->display_options['menu']['weight'] = '1';
 
 /* Display: Block */
@@ -298,7 +298,7 @@ $handler->display->display_options['filters']['uid_current']['relationship'] = '
 $handler->display->display_options['filters']['uid_current']['value'] = '1';
 $translatables['workbench_edited'] = array(
   t('Defaults'),
-  t('Content I\'ve Edited'),
+  t('My Edits'),
   t('view all'),
   t('Apply'),
   t('Reset'),
diff --git a/views/workbench_recent_content.view.inc b/views/workbench_recent_content.view.inc
index a7fa839..be4d3ec 100644
--- a/views/workbench_recent_content.view.inc
+++ b/views/workbench_recent_content.view.inc
@@ -86,7 +86,7 @@ $handler->display->display_options['empty']['area']['id'] = 'area';
 $handler->display->display_options['empty']['area']['table'] = 'views';
 $handler->display->display_options['empty']['area']['field'] = 'area';
 $handler->display->display_options['empty']['area']['empty'] = FALSE;
-$handler->display->display_options['empty']['area']['content'] = 'There is no content available for you to edit.';
+$handler->display->display_options['empty']['area']['content'] = 'No content available.';
 $handler->display->display_options['empty']['area']['format'] = 'plain_text';
 /* Relationship: Content: Author */
 $handler->display->display_options['relationships']['uid']['id'] = 'uid';
diff --git a/workbench.pages.inc b/workbench.pages.inc
index 024b53d..dbd011b 100644
--- a/workbench.pages.inc
+++ b/workbench.pages.inc
@@ -12,7 +12,7 @@
  * the Views as part of the alter hook provided here.
  *
  * @see hook_workbench_content_alter()
- * 
+ *
  * @return
  *  A Render API array of content creation options.
  */
@@ -34,14 +34,12 @@ function workbench_content() {
   );
   // This right column is given a width of 65% by workbench.myworkbench.css.
   $output['workbench_edited'] = array(
-    '#title' => t('Content I\'ve Edited'),
     '#view' => 'workbench_edited',
     '#view_display' => 'block_1',
     '#attributes' => array('class' => array('right', 'clearfix')),
     '#theme' => 'workbench_element',
   );
   $output['workbench_recent_content'] = array(
-    '#title' => t('All Recent Content'),
     '#view' => 'workbench_recent_content',
     '#view_display' => 'block_1',
     '#attributes' => array('class' => array('clearfix'), 'style' => array('clear: both;')),
@@ -52,19 +50,21 @@ function workbench_content() {
   drupal_alter('workbench_content', $output);
 
   // Transform the Views into markup.
+  // @see views_embed_view()
   foreach (element_children($output) as $key) {
-    $value = $output[$key];
-    if (isset($value['#view'])) {
-      $markup = '';
-      if (isset($output[$key]['#markup'])) {
-        $markup = $output[$key]['#markup'];
+    if (isset($output[$key]['#view']) && $view = views_get_view($output[$key]['#view'])) {
+      $output[$key] += array('#markup' => '', '#view_display' => 'default');
+      $display_id = $output[$key]['#view_display'];
+      if ($view->access($display_id)) {
+        $output[$key]['#markup'] .= $view->preview($display_id, array());
+        if ($title = $view->get_title()) {
+          $output[$key]['#title'] = check_plain($title);
+        }
       }
-      $view = $value['#view'];
-      $display = isset($value['#view_display']) ? $value['#view_display'] : 'default';
-      // TODO: pass arguments to the View.
-      $output[$key]['#markup'] = $markup . views_embed_view($view, $display);
+      $view->destroy();
     }
   }
+  dpm($output);
 
   return $output;
 }
