Error with text field replacement in paragraphs

Created on 3 February 2021, about 4 years ago
Updated 21 December 2024, 4 months ago

Problem/Motivation

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)

Steps to reproduce

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 = [];
+    }
πŸ› Bug report
Status

Closed: outdated

Component

Code

Created by

πŸ‡―πŸ‡΅Japan kazuko.murata

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024