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

darius’s picture

(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.

nedjo’s picture

Status: Active » Fixed

Fix applied.

dries’s picture

Status: Fixed » Closed (fixed)