Hi!

Firstly thanks for all your work on this, this is a great module, and I'm looking forward to it being released.

I have one slight issue: I am using taxonomy node operations to bulk add terms to nodes, however in views only one action for this is shown, I suspect it's the very last action for the very last term, everything else is gone. I did not have time to do any debugging yet, but there seems to be something strange going on.

Waldemar

Comments

Waldemar’s picture

Ok, the error comes from _views_bulk_operations_get_operations, as it returns an array keyed on the callback functions. This is not ideal, as potentially the callback function could be the same even though the arguments are different.

infojunkie’s picture

Assigned: Unassigned » infojunkie

Reproduced. Will work on it.

infojunkie’s picture

Status: Active » Fixed

Changed the $operations array keys to be md5(operation.description). In the process, decoupled the array key from code logic (e.g. name of a callback) as advocated by CS pundits.

Anonymous’s picture

Status: Fixed » Closed (fixed)