The update needs to take place in this module so that cases where $term = array2object($term) are replaced with the format $term = (array)$term
The update needs to take place in this module so that cases where $term = array2object($term) are replaced with the format $term = (array)$term
Comments
Comment #1
darius commented(object)$term, not (array)$term:
$term = array2object($term)should be replaced with$term = (object)$term.I can verify that after these changes the module works with 4.7.
Comment #2
nedjoFix applied.
Comment #3
dries commented