From 2edad6ef14aed1be6885c17fd80df520ba335053 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 27 Mar 2011 09:44:50 -0400 Subject: [PATCH] - Patch #1097972 by boombatower: Fixed hook_field_extra_fields_display_alter() incorrect example code. --- modules/field/field.api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/field/field.api.php b/modules/field/field.api.php index 1b3290f67bc..f905fa060a6 100644 --- a/modules/field/field.api.php +++ b/modules/field/field.api.php @@ -15,7 +15,7 @@ * * Fieldable entities or modules that want to have their components supported * should expose them using this hook. The user-defined settings (weight, - * visibility) are automatically applied on rendered forms and displayed + * visible) are automatically applied on rendered forms and displayed * entities in a #pre_render callback added by field_attach_form() and * field_attach_view(). * @@ -2204,7 +2204,7 @@ function hook_field_display_ENTITY_TYPE_alter(&$display, $context) { */ function hook_field_extra_fields_display_alter(&$displays, $context) { if ($context['entity_type'] == 'taxonomy_term' && $context['view_mode'] == 'full') { - $displays['description']['visibility'] = FALSE; + $displays['description']['visible'] = FALSE; } }