- Issue created by @mohammad-fayoumi
- 🇯🇴Jordan mohammad-fayoumi Amman
Closed as a duplicate of https://www.drupal.org/project/feeds_tamper/issues/3480174 🐛 TypeError: strtr(): Argument #1 ($string) must be of type string, array given in strtr() Active
The form element in the TamperFormBase.php form sets the id attribute incorrectly using an array instead of a string. This causes a fatal error:
mb_strtolower(): Argument #1 ($string) must be of type string, array given
Drupal\Component\Utility\Html::getId()
Html::getId()
or mb_strtolower()
.Change:
'#attributes' => ['id' => ['plugin-config']],
To:
'#attributes' => ['id' => 'plugin-config'],
N/A
Active
Code
Closed as a duplicate of https://www.drupal.org/project/feeds_tamper/issues/3480174 🐛 TypeError: strtr(): Argument #1 ($string) must be of type string, array given in strtr() Active