While debugging this notice:
Notice: Undefined index: uid in nodeaccess_insert_user_reference() (line 937 of nodeaccess/nodeaccess.module).
I realized the values from field_get_items()
return in this format:
$user_uids = [
'0' => ['uid' => 12345],
'1' => ['uid' => 12346],
]
and user_load_multiple()
expects them to be:
$user_uids = [
'0' => 12345,
'1' => 12346,
]
Flatten the multidimentional field array.
Postponed: needs info
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
No activities found.