Closed (fixed)
Project:
Exif
Version:
7.x-1.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Reporter:
Created:
30 Nov 2011 at 15:05 UTC
Updated:
14 Feb 2016 at 22:34 UTC
Jump to comment: Most recent
If Internationalization "taxonomy translation" module is enabled Exif module does not read exif keywords or creates terms as the function '_exif_handle_taxonomy_field' is never called.
The following code on line 201 in exif.module:
} else if ($field['module']=='taxonomy') {
Should be changed into:
} else if ($field['module']=='taxonomy' || $field['module']=='i18n_taxonomy') {
When taxonomy translation module is enabled $field['module'] contains string 'i18n_taxonomy'.
Comments
Comment #1
jphautin commentedComment #1.0
jphautin commentedUpdated
Comment #2
jphautin commentedComment #3
jphautin commentedintegrated in 7.x branch