diff options
Diffstat (limited to 'kolab.org/www/drupal-7.15/sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc')
-rw-r--r-- | kolab.org/www/drupal-7.15/sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/kolab.org/www/drupal-7.15/sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc b/kolab.org/www/drupal-7.15/sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc index c1ccb6d..48da283 100644 --- a/kolab.org/www/drupal-7.15/sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc +++ b/kolab.org/www/drupal-7.15/sites/all/modules/views/modules/taxonomy/views_handler_field_taxonomy.inc @@ -1,6 +1,11 @@ <?php /** + * @file + * Definition of views_handler_field_taxonomy. + */ + +/** * Field handler to provide simple renderer that allows linking to a taxonomy * term. * @@ -25,8 +30,8 @@ class views_handler_field_taxonomy extends views_handler_field { function option_definition() { $options = parent::option_definition(); - $options['link_to_taxonomy'] = array('default' => FALSE); - $options['convert_spaces'] = array('default' => FALSE); + $options['link_to_taxonomy'] = array('default' => FALSE, 'bool' => TRUE); + $options['convert_spaces'] = array('default' => FALSE, 'bool' => TRUE); return $options; } |