What about having the same language aware approach for Taxonomy terms path aliases as it is for Nodes path aliases?
$path['language'] = isset($term->language) ? $term->language : LANGUAGE_NONE;
instead of
$path['language'] = LANGUAGE_NONE;
in path.module for path_taxonomy_term_update function
i know that the taxonomy terms in the core it's not language aware at this moment, but this is very needed for i18n taxonomy terms translation.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 1450376-1.patch | 529 bytes | vasike |
Comments
Comment #1
vasikethis is the patch for it
Comment #2
vasikeComment #4
vasike#1: 1450376-1.patch queued for re-testing.
Comment #5
brahmjeet789 commented#1: 1450376-1.patch queued for re-testing.
Comment #6
crizThis is already fixed in core now:
$path['language'] = !empty($langcode) ? $langcode : LANGUAGE_NONE;