Skip to content
Snippets Groups Projects
Commit 47bdeff1 authored by Joachim Noreiko's avatar Joachim Noreiko
Browse files

Fixed error in passing params in BC handling.

parent 5e67911d
No related branches found
No related tags found
No related merge requests found
Pipeline #156640 passed
Pipeline: drupal-3057070

#156643

    ......@@ -48,7 +48,7 @@ protected function createImageField($field_name, $entity_type, $bundle = '', $st
    elseif (is_array($bundle)) {
    @trigger_error('Calling ' . __METHOD__ . '() without the $entity_type argument is deprecated in drupal:10.3.0 and this argument will be required in drupal:11.0.0. See https://www.drupal.org/node/3441322', E_USER_DEPRECATED);
    return $this->createImageField($field_name, 'node', 'node', $entity_type, $bundle, $storage_settings, $field_settings, $widget_settings, $formatter_settings, $description);
    return $this->createImageField($field_name, 'node', $entity_type, $bundle, $storage_settings, $field_settings, $widget_settings, $formatter_settings, $description);
    }
    FieldStorageConfig::create([
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment