diff -urPp webform/components/date.inc webform/components/date.inc
--- webform/components/date.inc	2012-04-03 16:14:49.000000000 -0400
+++ webform/components/date.inc	2012-03-07 14:19:58.000000000 -0500
@@ -331,7 +331,7 @@ function _webform_submit_date($component
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_date($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_date($component, $value, $format = 'html') {
   $value = webform_date_array(isset($value[0]) ? $value[0] : '', 'date');
 
   return array(
diff -urPp webform/components/email.inc webform/components/email.inc
--- webform/components/email.inc	2012-04-03 16:14:49.000000000 -0400
+++ webform/components/email.inc	2012-03-07 14:19:58.000000000 -0500
@@ -207,7 +207,7 @@ function _webform_validate_email($form_e
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_email($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_email($component, $value, $format = 'html') {
   return array(
     '#title' => $component['name'],
     '#weight' => $component['weight'],
diff -urPp webform/components/fieldset.inc webform/components/fieldset.inc
--- webform/components/fieldset.inc	2012-04-03 16:14:50.000000000 -0400
+++ webform/components/fieldset.inc	2012-03-07 14:19:58.000000000 -0500
@@ -81,7 +81,7 @@ function webform_fieldset_prerender($ele
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_fieldset($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_fieldset($component, $value, $format = 'html') {
   if ($format == 'text') {
     $element = array(
       '#title' => $component['name'],
diff -urPp webform/components/file.inc webform/components/file.inc
--- webform/components/file.inc	2012-04-03 16:14:51.000000000 -0400
+++ webform/components/file.inc	2012-03-07 14:19:58.000000000 -0500
@@ -485,7 +485,7 @@ function _webform_submit_file($component
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_file($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_file($component, $value, $format = 'html') {
   $fid = isset($value[0]) ? $value[0] : NULL;
   return array(
     '#title' => $component['name'],
diff -urPp webform/components/hidden.inc webform/components/hidden.inc
--- webform/components/hidden.inc	2012-04-03 16:14:52.000000000 -0400
+++ webform/components/hidden.inc	2012-03-07 14:19:58.000000000 -0500
@@ -101,7 +101,7 @@ function _webform_render_hidden($compone
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_hidden($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_hidden($component, $value, $format = 'html') {
   $element = array(
     '#title' => $component['name'],
     '#value' => isset($value[0]) ? $value[0] : NULL,
@@ -119,7 +119,7 @@ function _webform_display_hidden($compon
   // http://drupal.org/node/313639
   // http://drupal.org/node/781786
   if ($format == 'html') {
-    $element['#access'] = user_access('edit all webform submissions') || user_access('access all webform results') || $allow_anonymous;
+    $element['#access'] = user_access('edit all webform submissions') || user_access('access all webform results');
   }
 
   return $element;
diff -urPp webform/components/markup.inc webform/components/markup.inc
--- webform/components/markup.inc	2012-04-03 16:14:52.000000000 -0400
+++ webform/components/markup.inc	2012-03-07 14:19:58.000000000 -0500
@@ -67,6 +67,6 @@ function _webform_render_markup($compone
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_markup($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_markup($component, $value, $format = 'html') {
   return array();
 }
diff -urPp webform/components/number.inc webform/components/number.inc
--- webform/components/number.inc	2012-04-03 16:14:52.000000000 -0400
+++ webform/components/number.inc	2012-03-07 14:19:58.000000000 -0500
@@ -324,7 +324,7 @@ function _webform_render_number($compone
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_number($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_number($component, $value, $format = 'html') {
   $empty = !isset($value[0]) || $value[0] === '';
   return array(
     '#title' => $component['name'],
diff -urPp webform/components/pagebreak.inc webform/components/pagebreak.inc
--- webform/components/pagebreak.inc	2012-04-03 16:14:53.000000000 -0400
+++ webform/components/pagebreak.inc	2012-03-07 14:19:58.000000000 -0500
@@ -63,7 +63,7 @@ function _webform_render_pagebreak($comp
 /**
  * Implements _webform_render_component().
  */
-function _webform_display_pagebreak($component, $value = NULL, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_pagebreak($component, $value = NULL, $format = 'html') {
   $element = array(
     '#theme' => 'webform_display_pagebreak',
     '#title' => $component['name'],
diff -urPp webform/components/select.inc webform/components/select.inc
--- webform/components/select.inc	2012-04-03 16:14:53.000000000 -0400
+++ webform/components/select.inc	2012-03-07 14:19:58.000000000 -0500
@@ -491,7 +491,7 @@ function webform_expand_select_ids($elem
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_select($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_select($component, $value, $format = 'html') {
   return array(
     '#title' => $component['name'],
     '#weight' => $component['weight'],
diff -urPp webform/components/textarea.inc webform/components/textarea.inc
--- webform/components/textarea.inc	2012-04-03 16:14:54.000000000 -0400
+++ webform/components/textarea.inc	2012-03-07 14:19:58.000000000 -0500
@@ -137,7 +137,7 @@ function _webform_render_textarea($compo
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_textarea($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_textarea($component, $value, $format = 'html') {
   return array(
     '#title' => $component['name'],
     '#weight' => $component['weight'],
diff -urPp webform/components/textfield.inc webform/components/textfield.inc
--- webform/components/textfield.inc	2012-04-03 16:14:54.000000000 -0400
+++ webform/components/textfield.inc	2012-03-07 14:19:58.000000000 -0500
@@ -173,7 +173,7 @@ function _webform_render_textfield($comp
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_textfield($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_textfield($component, $value, $format = 'html') {
   return array(
     '#title' => $component['name'],
     '#weight' => $component['weight'],
diff -urPp webform/components/time.inc webform/components/time.inc
--- webform/components/time.inc	2012-04-03 16:14:55.000000000 -0400
+++ webform/components/time.inc	2012-03-07 14:19:58.000000000 -0500
@@ -240,7 +240,7 @@ function _webform_submit_time($component
 /**
  * Implements _webform_display_component().
  */
-function _webform_display_time($component, $value, $format = 'html', $allow_anonymous = FALSE) {
+function _webform_display_time($component, $value, $format = 'html') {
   $value = webform_date_array(isset($value[0]) ? $value[0] : '', 'time');
   if ($component['extra']['hourformat'] == '12-hour') {
     $value = webform_time_convert($value, '12-hour');
diff -urPp webform/webform.module webform/webform.module
--- webform/webform.module	2012-04-03 16:15:22.000000000 -0400
+++ webform/webform.module	2012-03-07 14:19:58.000000000 -0500
@@ -2748,7 +2748,7 @@ function _webform_filter_values($string,
       // Find by form key.
       $parents = webform_component_parent_keys($node, $component);
       $form_key = implode('][', $parents);
-      $display_element = webform_component_invoke($component['type'], 'display', $component, $value['value'], $format, $allow_anonymous);
+      $display_element = webform_component_invoke($component['type'], 'display', $component, $value['value'], $format);
 
       // Ensure the component is added as a property.
       $display_element['#webform_component'] = $component;
