Browse Source

Chado Boolean filter is now the default filter for boolean fields in chado tables

Lacey Sanderson 12 years ago
parent
commit
71630b4c02
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tripal_views/tripal_views.api.inc

+ 1 - 1
tripal_views/tripal_views.api.inc

@@ -437,7 +437,7 @@ function tripal_views_get_integration_array_for_chado_table($table_name, $base_t
       elseif (preg_match('/^boolean/', $field_schema['type'])) {
         $defn_array['fields'][$field_name]['handlers'] = array(
           'field' => array('name' => 'chado_views_handler_field_boolean'),
-          'filter' => array('name' => 'chado_views_handler_filter_string'),
+          'filter' => array('name' => 'chado_views_handler_filter_boolean_operator'),
           'sort' => array('name' => 'chado_views_handler_sort'),
         );
       }