- 🇨🇦Canada AdeleYounis
This seems to have something to do with authors getting deleted outside of the reference, without the reference getting resaved. We found that it affects the ability to export all formats, not just Bibtex, though Liam's merge request only fixes Bibtex export.
Attached is a new patch, using Liam's method, that seems to fix all the exports. Note that we did test to confirm that both files need the change - fixing the "generic" ReferenceNormalizerBase doesn't fix Bibtex, but does fix everything else.
- 🇨🇦Canada avo webworks Ottawa, Ontario, Canada
I had a very similar issue:
Error: Call to a member function label() on null in Drupal\bibcite_entity\Normalizer\ReferenceNormalizerBase->extractKeywords()
line 284: $keywords[] = $field->entity->label();
Changed to:
$keywords[] = $field->entity ? $field->entity ->label() : NULL;
Fixed the issue. - last update
over 1 year ago Composer require failure - 🇨🇦Canada avo webworks Ottawa, Ontario, Canada
Here is the new patch which adds the to the patch in #7 and includes the keywords issue.
-
AvO WebWorks →
authored b49a89c3 on 2.0.x
Issue #3261949 by bkosborne, Liam Morland, rfmarcelino, AvO WebWorks,...
-
AvO WebWorks →
authored b49a89c3 on 2.0.x
-
AardWolf →
committed 096eface on 3.0.x authored by
AvO WebWorks →
Issue #3261949 by bkosborne, Liam Morland, rfmarcelino, AvO WebWorks,...
-
AardWolf →
committed 096eface on 3.0.x authored by
AvO WebWorks →
- Status changed to Fixed
over 1 year ago 7:59am 19 June 2023 - 🇷🇺Russia hxdef
Thank you very much for your work! Added this to the module code.
Automatically closed - issue fixed for 2 weeks with no activity.