Closed (fixed)
Project:
Data
Version:
7.x-1.0-alpha7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Jul 2015 at 22:33 UTC
Updated:
19 Sep 2015 at 12:34 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
jelo commentedThis error is caused by Data Entity module. Can be fixed by changing line 256 of data_entity.module:
if ($entity_info['module'] == 'data_entity') {to
if (isset($entity_info['module']) && $entity_info['module'] == 'data_entity') {Comment #2
gparsloe commentedThanks! This worked for me.
Comment #3
joachim commentedPlease could you post that change as a patch?
Comment #4
jelo commentedSorry, I just tried to make a patch, but I am not setup with GIT yet. When I followed the instructions to make a patch it did not include the submodule in the checkout. I will have to get setup appropriately with the required tools like GIT before I can provide this as patch...
Comment #5
joachim commentedIf the data entity sub module wasn't in the checkout then you probably checked out the wrong branch.
Comment #6
gparsloe commentedIf I import data (and create nodes) without correcting this issue, will it matter? In other words, is this just a warning which I can ignore or will my imported/created nodes be different if I don't correct it? The reason I'm asking is because I don't have write access to the file on the server (my message above is in regards to my local setup) to make the changes and I'm not sure if/when the changes will get made. I'd like to import/create new nodes now. The nodes I'm creating have nothing to do with the data entity module.
Comment #7
Rasti commentedsubscribe
Comment #8
robertwb commentedAttached patch is a literal application of the line of code introduced above. Changing status to "needs review".
Comment #9
joachim commentedCommitted. Thanks everyone!