- πΊπΈUnited States smustgrave
So actually fixed this in 2.0.x by adding typehints.
2.0.x is 10.3 + 11 so it's safe to add
An error occurs when replacing a string in a text field of a paragraph.
Error: Cannot use string offset as an array in Drupal\scanner\Plugin\Scanner\Paragraph->replace() (line 147 of /app/docroot/modules/contrib/scanner/src/Plugin/Scanner/Paragraph.php)
Occurs when a paragraph is included in the replace target.
I think the solution is to change the string variable that causes the error an array.
src/Plugin/Scanner/Paragraph.php
public function replace($field, $values, $undo_data) {
list($entityType, $bundle, $fieldname) = explode(':', $field);
$data = $undo_data;
+ if (!is_array($data)) {
+ $data = [];
+ }
Closed: outdated
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
So actually fixed this in 2.0.x by adding typehints.
2.0.x is 10.3 + 11 so it's safe to add