A short review of your code revealed the following errors:
feeds.info has a line (line 7) referring to a non-existent file that should be removed:
files[] = FeedsYoutubeParser.inc
FeedsEntityTranslation.inc. line 29, has a call to die that should be removed:
die(print_r($config));
FeedsEntityTranslation.inc. line 45, has a use of $langauge_code, that I guess should be replaced by $options:
'#options' => $language_code,
Should be:
'#options' => $options,
feeds_et.mappers.inc, line 30, has a call to a non-existing function:
_field_feeds_set_target($source, $entity, $target, $value, FALSE, $language_code);
I guess it should be changed to:
_feeds_et_field_feeds_set_target($source, $entity, $target, $value, FALSE, $language_code);
I hope you can confirm these problems and commit the patch soon.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | feeds_et-fix_plain_errors-2552201-2.patch | 2.09 KB | PascalAnimateur |
| plain-errors-in-code.patch | 2.94 KB | fietserwin |
Comments
Comment #2
PascalAnimateur commentedSomehow the patch didn't apply cleanly on 1.x-dev.
Re-rolled it hoping it will work..
Comment #3
mohammed j. razemThis is no longer applicable as the file
FeedsEntityTranslation.incis no longer needed.And other errors were patched in #1720826: Translations are not saved and #1648532: Undefined index: FeedsImporter in FeedsPlugin::child() when none of the fields are translatable
Comment #4
mohammed j. razem