Active
Project:
Views (for Drupal 7)
Version:
7.x-3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Nov 2012 at 01:02 UTC
Updated:
30 Jan 2018 at 09:51 UTC
Jump to comment: Most recent
Comments
Comment #1
chriscalip commentedAlso translatable fields that are checkboxes seem to trigger an explosion of duplicate records and adding filters like the one provided @ https://drupal.org/node/1515156 does not seem to work :(
Comment #2
leon kessler commentedI found similar issues with taxonomy term fields. You get the same filter options when adding a language filter as when you add the field itself.
Anyway, dug into Views a little bit, couldn't quite work out exactly what was going on, but it seems as though there are several field types that get their handler applied after field_views_field_default_views_data() (line 425). So the views_handler_filter_locale_language handler (that gives you the correct language filter options) is being overridden somewhere.
Anyway, I've got this temporary fix for it that I've put into a custom module that seems to do the trick.
Comment #3
gascon commentedThat works like charm, @Leon Kessler! Thanks for the contribution :D