Automatically closed - issue fixed for 2 weeks with no activity.
I found a issue in field langcode when I am usign Entity Metadata Wrappers of the Entity API Module.
The problem occurs when the entity is translatable and the field is not translatable, I try to set the date to the field and it change the value to entity langcode:
// $entity is "en"
// Field is not translatable, it should be "und"
$entity->field_date->set($date);
// Result:
// $entity->field_date['en'][0]['value'] = $date;
This is happening because of the function: date_entity_metadata_field_setter() in date.module line 676. The module doesn't check if the langcode passed is acceptable to the field.
Fixed
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.