From 6a56a907d3826b349635cf0469f91c45df37674c Mon Sep 17 00:00:00 2001 From: catch Date: Sun, 4 Nov 2012 21:33:49 +0000 Subject: [PATCH] Issue #1751244 by pcambra, zuuperman: Convert taxonomy module widgets to Plugin system. --- core/modules/taxonomy/taxonomy.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index 75573a9bcc52..8da637f1ace0 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -1031,8 +1031,8 @@ function taxonomy_field_info() { * Implements hook_field_widget_info_alter(). */ function taxonomy_field_widget_info_alter(&$info) { - $info['options_select']['field types'][] = 'taxonomy_term_reference'; - $info['options_buttons']['field types'][] = 'taxonomy_term_reference'; + $info['options_select']['field_types'][] = 'taxonomy_term_reference'; + $info['options_buttons']['field_types'][] = 'taxonomy_term_reference'; } /**