-
NickDickinsonWilde β
committed f76131a5 on 8.x-2.x
Issue #3324007 by NickDickinsonWilde: Wrong type passed to Entity Query...
-
NickDickinsonWilde β
committed f76131a5 on 8.x-2.x
- π¨π¦Canada nickdickinsonwilde Victoria, BC (T'So-uke lands)
Hate committing things with no functional tests of the save process. Definitely need to prioritize π Add test coverage Fixed .
But tested on one site for months and we do need a stable release rather than dev. Automatically closed - issue fixed for 2 weeks with no activity.
- π΅π°Pakistan dewancodes
BEFORE:
$terms = taxonomy_term_load_multiple_by_name($item, 'tags');AFTER:
$terms = \Drupal::entityTypeManager()->getStorage("taxonomy_vocabulary")->loadByProperties(["name" => (string)$item, "vid" => 'tags']);
(string) this is the string enforcement.
This worked for me.